Introduction
Welcome! This is the API reference for the NetFoundry Network Management Service (v2), a lexicon of all possible API operations and their parameters. More conceptually and procedurally oriented guides and code samples may be found by visiting the Developer Portal.
Overview
HTTP verbs
NetFoundry adheres closely to standard HTTP and REST conventions in its use of HTTP verbs.
Verb | Usage |
---|---|
|
Used to retrieve a resource |
|
Used to create a new resource |
|
Used to update an existing resource, full updates only |
|
Used to update an existing resource, partial updates |
|
Used to delete an existing resource |
HTTP status codes
NetFoundry adheres closely to standard HTTP and REST conventions in its use of HTTP status codes.
Status code | Usage |
---|---|
|
The actual response will depend on the request method used. In a GET request, the response will contain an entity corresponding to the requested resource. In a POST request, the response will contain an entity describing or containing the result of the action. |
|
The request has been fulfilled and resulted in a new resource being created. |
|
The request has been accepted and is being processed asynchronously Standard response for successful HTTP requests which invoke back-end services. |
|
The server successfully processed the request, but is not returning any content. |
|
The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing). |
|
The request lacks valid authentication credentials for the target resource. |
|
The request is authenticated with valid credentials however that set of credentials is not authorized to access this resource. |
|
The requested resource could not be found but may be available again in the future. Subsequent requests by the client are permissible. |
Pagination
Paginated services will accept the following optional request parameters:
Path | Type | Optional | Description |
---|---|---|---|
page |
Integer |
true |
Page you want to retrieve, 0 indexed and defaults to 0. |
size |
Integer |
true |
Size of the page you want to retrieve, defaults to 1000. |
sort |
String |
true |
Sort a list of resources by one or more of their properties e.g. |
Pagination response has following structure:
Path | Type | Optional | Description |
---|---|---|---|
content |
Array[Object] |
false |
Actual items. |
totalElements |
Integer |
false |
Total count. |
totalPages |
Integer |
false |
Total pages with current page size. |
last |
Boolean |
false |
If this page is the last one. |
numberOfElements |
Integer |
false |
Actual size of content array (number of items). |
first |
Boolean |
false |
If this page is the first one. |
sort |
Object |
true |
Sort information object. |
size |
Integer |
false |
Requested size of the page. |
number |
Integer |
false |
Page number. |
empty |
booloean |
false |
If this page is empty. |
Content Types
You may request a content type or alternative representation or both for a resource or list of resources with the
Accept
header.
Request a Content Type
The default content type of a response is HAL+JSON when the Accept
header is absent from the request. A table
describing available types is below. Here’s an example of requesting a particular endpoint by ID as YAML.
GET /core/v2/endpoints/{{endpointId}} HTTP/1.1
Accept: application/x-yaml
id: "273a915a-50e4-4994-891e-56a33ce6449e"
ownerIdentityId: "6526771d-d0b4-4325-835a-b57caaa698dd"
createdBy: "6526771d-d0b4-4325-835a-b57caaa698dd"
createdAt:
nano: 448425000
epochSecond: 1616076528
updatedAt:
nano: 661920000
epochSecond: 1623109454
deletedBy: null
deletedAt: null
networkId: "5611d56c-cb91-4b8f-b658-9e066092ff0a"
zitiId: "uIWXyl94U"
name: "ACME Endpoint1"
typeId: "5b53fb49-51b1-4a87-a4e4-edda9716a970"
appId: null
appVersion: null
branch: "main"
revision: "80ece9482fdd"
type: "ziti-sdk-golang"
version: "v0.15.13"
arch: "amd64"
os: "darwin"
osRelease: "17.7.0"
osVersion: "Darwin Kernel Version 17.7.0: Thu Jun 21 22:53:14 PDT 2018; root:xnu-4570.71.2~1/RELEASE_X86_64"
hasApiSession: false
hasEdgeRouterConnection: false
sessionIdentityId: null
syncId: null
syncResourceId: null
attributes:
- "#workFromAnywhere"
sessionActive: true
jwt: null
mfaEnabled: false
jwtExpiresAt: null
Notation | MIME Type | Description |
---|---|---|
HAL+JSON (default) |
application/hal+json |
If you request a single resource by ID then the top level of the response will describe that resource and have
If you request a list of resources then response will have |
JSON |
application/json |
Single resource: response is a JSON dictionary describing the resource List of resources: response is a JSON list where each element describes an individual resource.
For embedded resources in non-HAL formats, the |
YAML |
application/x-yaml |
Single resource: response is a YAML dictionary describing the resource List of resources: response is a YAML list where each element describes an individual resource. |
CSV |
text/csv |
Comma-separated format where the first line is composed of column headers and subsequent lines each represent one resource. |
Request a Representation
A representation is a way of filtering and transforming the properties that are returned for each resource. The default
representation includes all resource properties. There is one alternative representation available at this time: the
create
representation includes only the properties that are necessary to create an identical resource. This is useful
for things like as-code snapshots and cloning resources. You may append the as=create
parameter to the default MIME
type to change only the representation of the resources in the response.
GET /core/v2/endpoints?networkId={{networkId}} HTTP/1.1
Accept:application/hal+json;as=create
{
"_embedded": {
"createEndpointList": [
{
"name": "ACME Endpoint1",
"enrollmentMethod": {
"ott": true,
"updb": null,
"ottca": null
},
"attributes": [
"#workFromAnywhere"
],
"_links": {
"network": {
"href": "https://gateway.production.netfoundry.io/core/v2/networks/5611d56c-cb91-4b8f-b658-9e066092ff0a",
"title": "ACME Network",
"profile": "parent"
},
"self": {
"href": "https://gateway.production.netfoundry.io/core/v2/endpoints/273a915a-50e4-4994-891e-56a33ce6449e"
}
}
}
]
}
}
Parameter | Value | Description |
---|---|---|
as |
create |
Only return the properties necessary to create the same resource. |
Embed Child Resources
When requesting an individual or list of resources you may additionally request child resources be embedded in the
response by sending query parameter embed=all
or embed={{child}}
. The valid names for child resources are the keys
in _links
, except things that are not children like self
, network
. The table below details how the format of the
embedded lists varies depending upon the requested content-type. Embedding is always one level deep. Put another way,
the network is like the trunk which may embed branch lists (e.g. edge routers), and branches may embed individual leaves
(e.g. the edge router’s host).
This example requests that the "edge-routers" child resource list be embedded in the response that describes a particular network.
GET /core/v2/networks/${networkId}?embed=edge-routers
Accept: application/hal+json
The full response would be prohibitively verbose, and so this template will demonstrate the response structure for a single resource with embedded child list "edge-routers".
{
{{ network properties }},
"_embedded": {
"edge-routers": {{ list of edge routers }}
},
"_links": {{ dictionary of related resources}}
}
This example requests the "host" resource be embedded in each element of the list of edge routers
GET /core/v2/edge-routers?networkId=${networkId}&embed=host
Accept: application/hal+json
The full response would be prohibitively verbose, and so this template will demonstrate the response structure for a list of resources with embedded child "host".
{
"_embedded": {
"edgeRouterList": [
{
{{ edge router 1 properties }},
"_links": {{ edge router 1 links }},
"_embedded": {
"host": {{ edge router 1 host's properties }}
}
},
{
{{ edge router 2 properties }},
"_links": {{ edge router 2 links }},
"_embedded": {
"host": {{ edge router 2 host's properties }}
}
}
]
},
"_links": {{ edge router list's links }},
"page": {
"size": 3500,
"totalElements": 2,
"totalPages": 1,
"number": 0
}
}
Notation | MIME Type | Embedded Format |
---|---|---|
HAL+JSON (default) |
application/hal+json |
The response has key |
JSON |
application/json |
Each requested, embedded list will appear in a top-level key e.g. |
YAML |
application/x-yaml |
Each requested, embedded list will appear in a top-level key where the resource type has been transposed from
kebab-case to camel-case e.g. |
CSV |
text/csv |
Heterogeneous embedded resources can not be expressed as CSV because they would require different column headers. |
Select Resource Properties
When requesting an individual or list of resources you may additionally request only certain properties be included in the response
by sending an alternate 'accept' header. The properties are specified as a header parameter named includeProperties
, the properties
requested should be separated by |
(pipe).
All requested properties are returned, null values included, as long as the property exists on the requested resource.
The includeProperties
parameter supports nested properties using "dot notation" with ant style patterns, examples are:
-
object.name
would include only the name property of theobject
. -
object.object2.name
would include only the name property ofobject2
nested insideobject
. -
object.*
includes all direct properties ofobject
. -
object.**
includes all properties ofobject
and any nested object inside ofobject
.
This example request would return only the property’s id
, zitiId
, and networkId
.
GET /core/v2/networks/${networkId} Accept: application/json;includeProperties=id|zitiId|networkId
{
"id", "{{ the id of the resource }}",
"zitiId", "{{ the ziti id of the resource }}",
"networkId", "{{ the id of network this resource belongs to }}",
}
This example request would return only the property’s id
and status
.
GET /core/v2/edge-routers Accept: application/hal+json;includeProperties=id|status
{
"_embedded": {
"edgeRouterList": [
{{ edge router 1 properties }}
{
"id", "{{ the id of the resource }}",
"status", "{{ current status of the edge routers }}",
"_links": "{{ dictionary of related resources for this resource }}"
},
{{ edge router 2 properties }}
{
"id", "{{ the id of the resource }}",
"status", "{{ current status of the edge routers }}",
"_links": "{{ dictionary of related resources for this resource }}"
}
]
},
"_links": "{{ dictionary of edge routers related resources }}",
"page": {
"size": 3500,
"totalElements": 2,
"totalPages": 1,
"number": 0
}
}
This example request would return the name
of the network and all nested properties of the networkController
but nothing else.
Some properties have been omitted from the example output for brevity.
GET /core/v2/networks/${networkId}?embed=networkController Accept: application/json;includeProperties=name|networkController.*
{
"name":" {{ the name of the network }}"
"networkController": {
"id": "{{ the id of the network controller }}",
"networkGroupId": "{{ the group id of which this network belongs to }}",
"status": "{{ current status of network controller }},"
"hostId": "{{ the host id of the network controller }}",
"domainName": {{ the externally resolvable dns name of this network controller" }}
...
}
}
This example request would return the name
of the network and the id
and status
of the networkController
but nothing else.
GET /core/v2/networks/${networkId}?embed=networkController Accept: application/json;includeProperties=id|name|networkController.id|networkController.status
{
"id": "{{ the id of the network }}",
"name": "{{ the name of the network }}",
"networkController": {
"id": "{{ the id of the network controller }}",
"status": "{{{ current status of network controller }}"
}
}
Backup a Network
You may combine techniques above for requesting embedded resources and the as=create
representation to backup a network.
GET /core/v2/network/{{networkId}}&embed=all
Accept: application/hal+json;as=create
Authentication
Authentication is delegated to an identity provider e.g. Cognito, Auth0, Okta. Use your API account credential to obtain an access token. Know more by reading the Authentication Guide.
Cognito
Follow this example if your authentication URL is for Amazon Cognito.
NETFOUNDRY_API_TOKEN=$( \ (1)
curl --user ${NETFOUNDRY_CLIENT_ID}:${NETFOUNDRY_PASSWORD} \ (2)
--request POST ${NETFOUNDRY_OAUTH_URL} \ (3)
--header 'content-type: application/x-www-form-urlencoded' \
--data 'grant_type=client_credentials&scope=https%3A%2F%2Fgateway.production.netfoundry.io%2F%2Fignore-scope' | \
jq -r .access_token (4)
)
1 | creates an environment variable to hold the token after successful request. The contents of this variable will be used in all subsequent requests |
2 | substitute the client ID and password for your API account |
3 | substitute the authentication URL for your API account |
4 | extract the access token with jq (command-line JSON processor) |
Auth0
Follow this example if your authentication URL is for Auth0.
NETFOUNDRY_API_TOKEN=$( \(1)
curl \(2)
--request POST \
--silent \
--show-error \
--header 'content-type: application/json' \
--data '{
"client_id":"---redacted----", (3)
"client_secret": "---redacted----", (4)
"audience":"https://gateway.production.netfoundry.io/",
"grant_type":"client_credentials"
}' \
https://netfoundry-production.auth0.com/oauth/token |\
jq -r .access_token \(5)
) && echo $NETFOUNDRY_API_TOKEN (6)
1 | creates an environment variable to hold the token after successful request. The contents of this variable will be used in all subsequent requests |
2 | this example uses the cURL command to perform the request |
3 | you will need to insert your actual client ID |
4 | you will need to insert your actual secret |
5 | this example uses jq to parse the response from Auth0 and extract the token |
6 | this line prints the extracted token; it is included for convenience / debugging purposes only |
API request using access token
Execute an http request per the example below (e.g. fetch networks). The access token is presented to the API via the
header, which in turn leverages the Authorization
variable used in the previous example to store the extracted access token.NETFOUNDRY_API_TOKEN
# get networks
curl https://gateway.production.netfoundry.io/core/v2/networks \ (1)
--header "Authorization: Bearer ${NETFOUNDRY_API_TOKEN}" (2)
1 | the URL used to fetch networks (see also [Listing networks]) |
2 | the header transmits the Bearer token |
Resources
Network Groups
Create Network Group
POST /v2/network-groups
Authorization
This endpoint requires create
action on the network-group
resource type.
Path parameters
No parameters.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
billingAccountId |
String |
true |
|
ownerIdentityId |
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI5cGJ6ZE5LYU56U2F0NU15YnhScnJBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjdiMzI1OTM5LTIxNWUtNGNkYi1hM2RlLTc4ZWVjMTA4MTFkNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA0OSwiZXhwIjoxNzI1MjYyNjQ5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjYyYWFjMjRmLWZlYmItNGJjNS04ZDA0LWNjZGE0MzU5MWE4OVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA0OX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.jQ6Cc0A3expkXPvBIZ7tcG6irNvUpHkbl0MWM33IOoDbLjA2sbiaDcD1UK1Evfg8feohf8rL-jUHaA5j1o11-AcEmZZSydssiZz3Im1F08eLByg7vrxvq-Ca4w4Y28VgWzo1Uwyx1QjPOsDhgPKktAS6yHAySWmIrZ_88xFy9dL68V5_bq4qmUmgOPOpkOuAkQJM5dBTjtbMhbghrxXrRXbyfrNQmwvNHwVNDcjI1mQ5mBjau0oevXIHxrDmggQAovqHEjS-93rYJ_SMPTiuv3RrC8xTHwWGgTiK2iCbWDutf8IngBF2gBK3yViX2nIabzFqNjAjvqdnlCb9ImokfA' \
-d '{"name":"New NG","billingAccountId":"cbdbb359-db7b-4358-bf6b-a56670f9195f","ownerIdentityId":"e13b33a0-5637-4ad2-ab44-e009a39026d9"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1115
{
"id" : "31fe6cee-095a-4e0d-807f-958fd3257765",
"name" : "New NG",
"shortName" : "NEWNG",
"billingAccountId" : "cbdbb359-db7b-4358-bf6b-a56670f9195f",
"ownerIdentityId" : "e13b33a0-5637-4ad2-ab44-e009a39026d9",
"createdBy" : "7b325939-215e-4cdb-a3de-78eec10811d4",
"createdAt" : "2024-09-02T06:37:29.898066Z",
"updatedAt" : "2024-09-02T06:37:29.898066Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/31fe6cee-095a-4e0d-807f-958fd3257765",
"title" : "New NG"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/71cdb9d8-76a0-4e8e-9406-59ce2eb12697",
"title" : "Create NetworkGroup",
"profile" : "meta"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=31fe6cee-095a-4e0d-807f-958fd3257765"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=31fe6cee-095a-4e0d-807f-958fd3257765"
}
}
}
Delete Network Group
DELETE /v2/network-groups/{id}
Authorization
This endpoint requires delete
action on the network-group
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups/474e9dfe-88fc-4483-b20e-381627fd9e9c' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJnRVNKdlM5a0lkcEdZVWZxWGhhSWZnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImVmZDRhMGIzLTVhZTctNDIwNy04NzlkLWIzMTMzNDhiNWZlYiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA0OCwiZXhwIjoxNzI1MjYyNjQ4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQxZDIyOWQxLWE2ZjktNDdhMS1iYmJlLTBhY2JkYzlhNDk2YVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA0OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.PVHC3jpXTE4Io5jdK5Ii2DlviU7EUSCzyME5Y4ULwurhn6-EaQH7xCFulQ3ssM_082m1IX7jw2rUn-TarudqXDUHS_c1ADme8zNpPZrkSo1c1ml0-O7-6QZGppokTYQ7rdAgIWiyoPSrdmtMVkP-3aU_93L8uAMIkWJcXZuOEMQkdipWN8o0Yg_31Z3sFNzJd3e0J81tgqRBUjAWfQmImX1dQxXk6gXZxr-OxR8aPECRo4_xNzi8Jn-ViidXvcGV5rr1Xsl0OGsHocKZpWwR6SYBs0kEEWz1qPJL9tDEUdu11X53YCdbb1_vNzvPyqN4RACKYbOSOFGWfYHNLNIsRA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1174
{
"id" : "474e9dfe-88fc-4483-b20e-381627fd9e9c",
"name" : "Test-NG",
"shortName" : "nw-271",
"billingAccountId" : "d791d847-97cf-4843-81a1-c46687491d18",
"ownerIdentityId" : "5cf94abd-4183-48d9-897e-8f47b6d64d44",
"createdBy" : "d04b98d4-82cf-48fc-932b-d30f938198f8",
"createdAt" : "2024-09-02T06:37:28.839633Z",
"updatedAt" : "2024-09-02T06:37:28.870080Z",
"deletedBy" : "efd4a0b3-5ae7-4207-879d-b313348b5feb",
"deletedAt" : "2024-09-02T06:37:28.869Z",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/474e9dfe-88fc-4483-b20e-381627fd9e9c",
"title" : "Test-NG"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/4dc7837c-8a4b-4120-9fa5-5ffe2414741a",
"title" : "Delete NetworkGroup",
"profile" : "meta"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=474e9dfe-88fc-4483-b20e-381627fd9e9c"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=474e9dfe-88fc-4483-b20e-381627fd9e9c"
}
}
}
Get Network Group
GET /v2/network-groups/{id}
Authorization
This endpoint requires read
action on the network-group
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups/3c0f4336-1a8f-4d3b-8302-6d21dc95646b' -i -X GET \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3OXdUb1Npck1tVTM1MnA3SGhwOC1nIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImJlNmFlMzQ2LWVlODctNGY1Yi1iMmZlLTg4MmRiYWI3MjdiYSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA0OSwiZXhwIjoxNzI1MjYyNjQ5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRhZjg1Njg0LTJiNDgtNDljYS1hZWFlLTJkZDEwZDI2MWM4N1wiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA0OX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.jpju7RqP-0pC8WBgNUyoGFNAeif9Uy7B6Vk-RqQt0jzmRbkuFFGC7ZE0LZbCOvHbSlV18XiOjSqftB6JZmJZULc0xb--IfL7kB8voIZMLPfpC7uzbdolWTXOd6egzrvRVTJY5nOJzRpmVN0uFuJwYI5ZQuzztGwm7zlC3lFH_JhDs1_1pbcj_Rvv0Mqdxe8qA6AC7FPu-DXTA931uLAPEMW_y4nGiy73DgDbcO6wOKcUrRDVBnA2kMFZYeV_w5T4sxd5n7N1JZ24Jq3OhCDh2kNu687cinzWqOuv1wNB48Q1GZaaNFU4OqKCW_PnwhdfKcqSkm9NadSbSZzw30jRaw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 912
{
"id" : "3c0f4336-1a8f-4d3b-8302-6d21dc95646b",
"name" : "Test-NG",
"shortName" : "nw-351",
"billingAccountId" : "aa6c7b59-026d-40b9-a855-cccfd5c09ef6",
"ownerIdentityId" : "49061713-458c-464e-a3c8-ea2901c6dc2f",
"createdBy" : "027bb992-06f3-41f9-b115-a53e93038bec",
"createdAt" : "2024-09-02T06:37:29.765462Z",
"updatedAt" : "2024-09-02T06:37:29.765462Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/3c0f4336-1a8f-4d3b-8302-6d21dc95646b",
"title" : "Test-NG"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=3c0f4336-1a8f-4d3b-8302-6d21dc95646b"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=3c0f4336-1a8f-4d3b-8302-6d21dc95646b"
}
}
}
Find Network Groups
GET /v2/network-groups
Authorization
This endpoint requires read
action on the network-group
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
name |
String |
true |
|
shortName |
String |
true |
|
billingAccountId |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups' -i -X GET \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJCM0I4dVNHOUtJcG53SUxrN0l3V0pBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijc3MjY1ODljLTM4ZmUtNGJiYy1iZTFjLWM5YTM1NGQ2NDAyMSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA0OSwiZXhwIjoxNzI1MjYyNjQ5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjVkMzA2MjNmLTA1NWYtNGFhYi1hMTEzLWJiMDdjMWY0MGE3OFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA0OX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.oXmO40_t0KODopW5rBHx7Y93FmK2cIFRa0xuD5KOhAAwQtk2pkly-Cb0wDpdN1t2YItPvJ5yQP2Mle-7qw719oJRZkFdmOXjaWyZac7J-aCr_AtIUgLwsxOWX3HTSgyToxld7AsBnEKy2TnB-7viHAj-70pF8AwZlJuYsB-w600uSOt1eHWhVFfDxgjmZQApSH1hD-iN5wL5mjDVJBgQ96FKP8wzDAm4To4QPaSDG9Ocq1_PV_jcwiN9yQCqveTjjSuNCiyukAlYaovNmiUep2fdfmDu_NnYs7_1z-4_f4EETpSP1JRutLrGDtnUfjyb7wjvmqi52ghuLUtnmtliSA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 5321
{
"_embedded" : {
"networkGroupList" : [ {
"id" : "0da17dd4-669e-4e4c-9d92-534b340a6dd2",
"name" : "Test-NG",
"shortName" : "nw-251",
"billingAccountId" : "f0b8f337-b4e2-4c3c-885a-6bb0197620a1",
"ownerIdentityId" : "c337d950-23dc-4805-a000-732a7ed75e98",
"createdBy" : "0d58d024-671f-4660-9f72-d2637326d281",
"createdAt" : "2024-09-02T06:37:28.232628Z",
"updatedAt" : "2024-09-02T06:37:28.507787Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/0da17dd4-669e-4e4c-9d92-534b340a6dd2",
"title" : "Test-NG"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=0da17dd4-669e-4e4c-9d92-534b340a6dd2"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=0da17dd4-669e-4e4c-9d92-534b340a6dd2"
}
}
}, {
"id" : "864eadad-3143-47ef-8933-c1892c8ae10d",
"name" : "Test-NG",
"shortName" : "nw-331",
"billingAccountId" : "57f9a75f-7713-4656-8e56-44abc36748b3",
"ownerIdentityId" : "daa74ab7-9b9b-4c54-9ed3-5e7a11b9cc1c",
"createdBy" : "f09ed279-1649-4e23-ad19-20d9f5f60fdd",
"createdAt" : "2024-09-02T06:37:29.438016Z",
"updatedAt" : "2024-09-02T06:37:29.438016Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/864eadad-3143-47ef-8933-c1892c8ae10d",
"title" : "Test-NG"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=864eadad-3143-47ef-8933-c1892c8ae10d"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=864eadad-3143-47ef-8933-c1892c8ae10d"
}
}
}, {
"id" : "bce07cd1-8f36-44a3-b279-26426e7a53ef",
"name" : "Cloud Engineering Networks",
"shortName" : "CLDENG",
"billingAccountId" : null,
"ownerIdentityId" : "0ab1b47d-a5de-4f39-a3bd-7b130cacf401",
"createdBy" : "0ab1b47d-a5de-4f39-a3bd-7b130cacf401",
"createdAt" : "2024-09-02T06:37:00.038161Z",
"updatedAt" : "2024-09-02T06:37:00.038161Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/bce07cd1-8f36-44a3-b279-26426e7a53ef",
"title" : "Cloud Engineering Networks"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=bce07cd1-8f36-44a3-b279-26426e7a53ef"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=bce07cd1-8f36-44a3-b279-26426e7a53ef"
}
}
}, {
"id" : "d9f49559-79b8-407e-8ea7-725bd78e7ee8",
"name" : "Updated NG Name-28",
"shortName" : "nw-301",
"billingAccountId" : "2956ce7f-1489-4147-813b-ff47c0bfcd86",
"ownerIdentityId" : "11a1688f-d4d0-430e-9c44-a7dd77631953",
"createdBy" : "dbb5a52f-9da0-4e3f-ae06-4d23adc1d56e",
"createdAt" : "2024-09-02T06:37:28.998474Z",
"updatedAt" : "2024-09-02T06:37:29.082193Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/d9f49559-79b8-407e-8ea7-725bd78e7ee8",
"title" : "Updated NG Name-28"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=d9f49559-79b8-407e-8ea7-725bd78e7ee8"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=d9f49559-79b8-407e-8ea7-725bd78e7ee8"
}
}
}, {
"id" : "f0428619-11bd-403d-8b00-a463ff8aad84",
"name" : "NF Support Networks",
"shortName" : "NFSUP",
"billingAccountId" : null,
"ownerIdentityId" : "0ab1b47d-a5de-4f39-a3bd-7b130cacf401",
"createdBy" : "0ab1b47d-a5de-4f39-a3bd-7b130cacf401",
"createdAt" : "2024-09-02T06:37:00.012647Z",
"updatedAt" : "2024-09-02T06:37:00.012647Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/f0428619-11bd-403d-8b00-a463ff8aad84",
"title" : "NF Support Networks"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=f0428619-11bd-403d-8b00-a463ff8aad84"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=f0428619-11bd-403d-8b00-a463ff8aad84"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups"
}
},
"page" : {
"size" : 3500,
"totalElements" : 5,
"totalPages" : 1,
"number" : 0
}
}
Update Network Group
PATCH /v2/network-groups/{id}
Authorization
This endpoint requires update
action on the network-group
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
billingAccountId |
String |
true |
|
ownerIdentityId |
String |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-groups/d9f49559-79b8-407e-8ea7-725bd78e7ee8' -i -X PATCH \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJPMTdJMS1WYTdobHM1SE5OTTRqMUh3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjUyMWVlZmNmLWUzYjItNGRkNy05MmI1LTJlNDcwNjU3MDZjNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA0OSwiZXhwIjoxNzI1MjYyNjQ5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImJhMmIyMTc2LWVhZTYtNGM2NS1hZjJjLTFhYTBjODA0NTFjZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA0OX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Msn6uvFKOepDr78DfwP0UoID_nDy4T1l2DWOehB3vsctf7qHwNF-owuiKJYGxyziWQ_iSQZ_8qauKJO9jsIYY_AQ-GPoTbR1ZYGF1E5PK7bLoytLc5MGcS7gDbEFr824PK0cqmC6kbKrP75H807rf3hJwxNFnFbco6bP8vUaYn4QUCHuyyY_0AQxSONXVWv3yUW9rMHn8SO6CTYIm5FyjSH366rhbOkBBWniVahPNAde2EaMYNTMtkStuqYoQxKcFnUd5Qqh_cpGVtUC3vdW_4eZpkLzf9BU6RHzybek-pWu68OMjv4AP2HtUASLisCpNbApDlPrF5BfvCGnKxQkWA' \
-d '{"name":"Updated NG Name-28","billingAccountId":"2956ce7f-1489-4147-813b-ff47c0bfcd86","ownerIdentityId":"11a1688f-d4d0-430e-9c44-a7dd77631953"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1140
{
"id" : "d9f49559-79b8-407e-8ea7-725bd78e7ee8",
"name" : "Updated NG Name-28",
"shortName" : "nw-301",
"billingAccountId" : "2956ce7f-1489-4147-813b-ff47c0bfcd86",
"ownerIdentityId" : "11a1688f-d4d0-430e-9c44-a7dd77631953",
"createdBy" : "dbb5a52f-9da0-4e3f-ae06-4d23adc1d56e",
"createdAt" : "2024-09-02T06:37:28.998474Z",
"updatedAt" : "2024-09-02T06:37:29.082193Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/d9f49559-79b8-407e-8ea7-725bd78e7ee8",
"title" : "Updated NG Name-28"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/536f2488-6318-42b0-9164-c67e2144d5fc",
"title" : "Update NetworkGroup",
"profile" : "meta"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=d9f49559-79b8-407e-8ea7-725bd78e7ee8"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=d9f49559-79b8-407e-8ea7-725bd78e7ee8"
}
}
}
Networks
Find Networks
GET /v2/networks
Authorization
This endpoint requires read
action on the network
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
network.size |
Object |
true |
|
findByName |
String |
true |
Deprecated.. |
findByNetworkGroupId |
Object |
true |
Deprecated.. |
region |
String |
true |
Deprecated.. |
locationCode |
String |
true |
Deprecated.. |
size |
String |
true |
Deprecated.. |
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
networkControllers |
true |
|
edgeRouters |
true |
|
edgeRouterPolicies |
true |
|
endpoints |
true |
|
services |
true |
|
appWans |
true |
|
certificateAuthorities |
true |
|
hosts |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
name |
String |
true |
|
networkGroupId |
String |
true |
|
size |
String |
true |
Deprecated.. |
productVersion |
Object |
true |
|
region |
String |
true |
Deprecated.. |
status |
String |
true |
Must be one of [NEW, PROVISIONING, PROVISIONED, ERROR, UPDATING, SUSPENDED, REPLACING, DELETING, DELETED]. |
publicCertEnabled |
Boolean |
true |
|
haEnabled |
Boolean |
true |
|
dnsZoneId |
String |
true |
|
o365BreakoutCategory |
String |
true |
Must be one of [OPTIMIZE, OPTIMIZE_ALLOW, OPTIMIZE_ALLOW_DEFAULT, NONE]. |
networkController |
Object |
true |
Deprecated.. |
networkController.id |
String |
true |
|
networkController.ownerIdentityId |
String |
true |
|
networkController.networkId |
String |
true |
|
networkController.domainName |
String |
true |
|
networkController.alternateDomainName |
String |
true |
|
networkController.port |
Integer |
true |
|
networkController.name |
String |
true |
|
networkController.productVersion |
Object |
true |
|
networkController.hostId |
String |
true |
|
networkController.status |
String |
true |
Must be one of [NEW, PROVISIONING, PROVISIONED, ERROR, UPDATING, SUSPENDED, REPLACING, DELETING, DELETED]. |
networkController.createdAt |
String |
true |
|
networkController.updatedAt |
String |
true |
|
networkController.deletedAt |
String |
true |
|
networkController.createdBy |
String |
true |
|
networkController.deletedBy |
String |
true |
|
networkController.softwareDeploymentStateId |
String |
true |
|
networkController.haPrimaryNode |
Boolean |
true |
|
networkController.publicDomainName |
String |
true |
|
networkController.managementZitiIdentity |
Object |
true |
|
networkController.managementZitiIdentity.id |
String |
true |
|
networkController.managementZitiIdentity.name |
String |
true |
|
networkController.managementZitiIdentity.type |
Object |
true |
|
networkController.managementZitiIdentity.type.id |
String |
true |
|
networkController.managementZitiIdentity.type.name |
String |
true |
|
networkController.managementZitiIdentity.typeId |
String |
true |
|
networkController.managementZitiIdentity.externalId |
String |
true |
|
networkController.managementZitiIdentity.authPolicyId |
String |
true |
|
networkController.managementZitiIdentity.authenticators |
Object |
true |
|
networkController.managementZitiIdentity.authenticators.updb |
Object |
true |
|
networkController.managementZitiIdentity.authenticators.updb.username |
String |
true |
|
networkController.managementZitiIdentity.authenticators.cert |
Object |
true |
|
networkController.managementZitiIdentity.authenticators.cert.fingerprint |
String |
true |
|
networkController.managementZitiIdentity.enrollment |
Object |
true |
|
networkController.managementZitiIdentity.enrollment.ott |
Object |
true |
|
networkController.managementZitiIdentity.enrollment.ott.id |
String |
true |
|
networkController.managementZitiIdentity.enrollment.ott.token |
String |
true |
|
networkController.managementZitiIdentity.enrollment.ott.jwt |
String |
true |
|
networkController.managementZitiIdentity.enrollment.ott.expiresAt |
String |
true |
|
networkController.managementZitiIdentity.enrollment.ottca |
Object |
true |
|
networkController.managementZitiIdentity.enrollment.ottca.id |
String |
true |
|
networkController.managementZitiIdentity.enrollment.ottca.caId |
String |
true |
|
networkController.managementZitiIdentity.enrollment.ottca.token |
String |
true |
|
networkController.managementZitiIdentity.enrollment.ottca.jwt |
String |
true |
|
networkController.managementZitiIdentity.enrollment.ottca.expiresAt |
String |
true |
|
networkController.managementZitiIdentity.enrollment.updb |
Object |
true |
|
networkController.managementZitiIdentity.enrollment.updb.id |
String |
true |
|
networkController.managementZitiIdentity.enrollment.updb.token |
String |
true |
|
networkController.managementZitiIdentity.enrollment.updb.jwt |
String |
true |
|
networkController.managementZitiIdentity.enrollment.updb.expiresAt |
String |
true |
|
networkController.managementZitiIdentity.disabled |
Boolean |
true |
|
networkController.managementZitiIdentity.disabledAt |
String |
true |
|
networkController.managementZitiIdentity.disabledUntil |
String |
true |
|
networkController.managementZitiIdentity.envInfo |
Object |
true |
|
networkController.managementZitiIdentity.envInfo.arch |
String |
true |
|
networkController.managementZitiIdentity.envInfo.os |
String |
true |
|
networkController.managementZitiIdentity.envInfo.osRelease |
String |
true |
|
networkController.managementZitiIdentity.envInfo.osVersion |
String |
true |
|
networkController.managementZitiIdentity.sdkInfo |
Object |
true |
|
networkController.managementZitiIdentity.sdkInfo.appId |
String |
true |
|
networkController.managementZitiIdentity.sdkInfo.appVersion |
String |
true |
|
networkController.managementZitiIdentity.sdkInfo.branch |
String |
true |
|
networkController.managementZitiIdentity.sdkInfo.revision |
String |
true |
|
networkController.managementZitiIdentity.sdkInfo.type |
String |
true |
|
networkController.managementZitiIdentity.sdkInfo.version |
String |
true |
|
networkController.managementZitiIdentity.hasApiSession |
Boolean |
true |
|
networkController.managementZitiIdentity.hasEdgeRouterConnection |
Boolean |
true |
|
networkController.managementZitiIdentity.roleAttributes |
Array[String] |
true |
|
networkController.managementZitiIdentity.tags |
Map |
true |
|
networkController.managementZitiIdentity.appData |
Map |
true |
|
networkController.managementZitiIdentity.createdAt |
String |
true |
|
networkController.managementZitiIdentity.updatedAt |
String |
true |
|
networkController.managementZitiIdentity.defaultAdmin |
Boolean |
true |
|
networkController.managementZitiIdentity.admin |
Boolean |
true |
|
networkController.managementZitiIdentity.mfaEnabled |
Boolean |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/networks' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJlYVR3STJLR0F2bkVvRWRfMXYyd1BBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImUxNjlhYWMxLTYzZDktNGQ5ZS1hMTUzLTNiZGFmZTlhOGU1ZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIwNCwiZXhwIjoxNzI1MjYyODA0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImViMjdmZDMyLTM2MzEtNDI1Mi1hYzg2LWU3OThjOWE5OTgyNVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIwNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.X6Lh2Lmz-TWhxWKdhGIu8jL0mdXzbt9pDL6nKFIn5F_O3tvdvRw8mxneaz-YW5xCRf6OCuIMCsijlWnXDwcWgf2MdAi0HXTM97hOX_Z2Z9yqwrBdPqmmXqoKIUuatVNkTmsezM0sqHhzH0cAWeJETd98Bd65LJXzRxGRtMOD8IpEDCp3lNFJ1A2CcDb6PAeUlyw0Yqe0C-5HZqKBkOeDeeI61lTGfIdjXxIeCWAorC42RVw9CFEQPLg9R3B-D4DUzZTs_oB4ag6vw6zGJ0Sa2D5vy5xDb0AuZ_5E3V2D88pB0HCG-E29RcmWZHlbZhciVNZt-wCuT62pXzHPs-4m8g'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 67936
{
"_embedded" : {
"networkList" : [ {
"id" : "152f8b6c-c0f1-47e1-b77f-0efa7544c2ba",
"ownerIdentityId" : "5f0d873b-47eb-4750-b027-7104d3c84355",
"createdBy" : "5f0d873b-47eb-4750-b027-7104d3c84355",
"createdAt" : "2024-09-02T06:40:04.148402Z",
"updatedAt" : "2024-09-02T06:40:04.148791Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2342",
"networkGroupId" : "25c69acb-c2fc-41e6-8a10-85018b793aeb",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "d9927cf8-de9b-43c2-971a-a0d5b16c0287",
"ownerIdentityId" : "5f0d873b-47eb-4750-b027-7104d3c84355",
"networkId" : "152f8b6c-c0f1-47e1-b77f-0efa7544c2ba",
"domainName" : "d9927cf8-de9b-43c2-971a-a0d5b16c0287.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2342-nc",
"productVersion" : "7.3.37",
"hostId" : "4463e410-102a-4078-9ae2-4d9a96b9feeb",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.149757Z",
"updatedAt" : "2024-09-02T06:40:04.151944Z",
"deletedAt" : null,
"createdBy" : "5f0d873b-47eb-4750-b027-7104d3c84355",
"deletedBy" : null,
"softwareDeploymentStateId" : "8e616df2-072f-4cfb-8542-be67b41a898f",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/25c69acb-c2fc-41e6-8a10-85018b793aeb",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/152f8b6c-c0f1-47e1-b77f-0efa7544c2ba",
"title" : "network-2342"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=152f8b6c-c0f1-47e1-b77f-0efa7544c2ba"
}
}
}, {
"id" : "60c23709-5e5e-4709-a8a6-0fb6f9c12a6e",
"ownerIdentityId" : "522d870b-b197-42b4-a6d4-bbf09dd9586a",
"createdBy" : "522d870b-b197-42b4-a6d4-bbf09dd9586a",
"createdAt" : "2024-09-02T06:40:04.372998Z",
"updatedAt" : "2024-09-02T06:40:04.427387Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Create Test Network",
"networkGroupId" : "6ac16be7-46fe-4565-8b6d-de464482a832",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "none",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "a34d6307-a791-4697-90e5-4f2a9339be47",
"ownerIdentityId" : "522d870b-b197-42b4-a6d4-bbf09dd9586a",
"networkId" : "60c23709-5e5e-4709-a8a6-0fb6f9c12a6e",
"domainName" : "CreateTestNetwork.nkx535xv7a7lygx818vhf.nc",
"alternateDomainName" : null,
"port" : 8443,
"name" : "NCCUSTOMERc35fae7e-4e8d-4e47-bfe6-80c8a72858d5",
"productVersion" : "7.3.18",
"hostId" : "c35fae7e-4e8d-4e47-bfe6-80c8a72858d5",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.381273Z",
"updatedAt" : "2024-09-02T06:40:04.416920Z",
"deletedAt" : null,
"createdBy" : "522d870b-b197-42b4-a6d4-bbf09dd9586a",
"deletedBy" : null,
"softwareDeploymentStateId" : "6c974089-62be-4429-9a36-2baa1807ff0d",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/6ac16be7-46fe-4565-8b6d-de464482a832",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/60c23709-5e5e-4709-a8a6-0fb6f9c12a6e",
"title" : "Create Test Network"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=60c23709-5e5e-4709-a8a6-0fb6f9c12a6e"
}
}
}, {
"id" : "70147b84-eef8-4496-9eb4-e8850868f390",
"ownerIdentityId" : "eccbaf66-85c0-4bd1-82c6-29608d4dc5a9",
"createdBy" : "eccbaf66-85c0-4bd1-82c6-29608d4dc5a9",
"createdAt" : "2024-09-02T06:40:04.193626Z",
"updatedAt" : "2024-09-02T06:40:04.194200Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2348",
"networkGroupId" : "aac357e7-119f-4395-8f25-91f6bcf8c39f",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "09b5f89c-d7e8-4be3-9663-f724eb92dae9",
"ownerIdentityId" : "eccbaf66-85c0-4bd1-82c6-29608d4dc5a9",
"networkId" : "70147b84-eef8-4496-9eb4-e8850868f390",
"domainName" : "09b5f89c-d7e8-4be3-9663-f724eb92dae9.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2348-nc",
"productVersion" : "7.3.37",
"hostId" : "32dc360f-be8d-4c37-94f1-0b7441000f17",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.195199Z",
"updatedAt" : "2024-09-02T06:40:04.198028Z",
"deletedAt" : null,
"createdBy" : "eccbaf66-85c0-4bd1-82c6-29608d4dc5a9",
"deletedBy" : null,
"softwareDeploymentStateId" : "5bdfd41f-3485-4ecd-8eec-2d3546291546",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/aac357e7-119f-4395-8f25-91f6bcf8c39f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/70147b84-eef8-4496-9eb4-e8850868f390",
"title" : "network-2348"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
}
}
}, {
"id" : "88d52753-a28e-4600-96cf-8b236d850418",
"ownerIdentityId" : "0c33385c-7899-4cda-9d3b-acfdc38fb300",
"createdBy" : "0c33385c-7899-4cda-9d3b-acfdc38fb300",
"createdAt" : "2024-09-02T06:40:04.553085Z",
"updatedAt" : "2024-09-02T06:40:04.553558Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2383",
"networkGroupId" : "0914f8dd-3d1c-4fb7-9413-0bfc39a98399",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "b79d9089-452b-4f43-a3b5-14f3df66b956",
"ownerIdentityId" : "0c33385c-7899-4cda-9d3b-acfdc38fb300",
"networkId" : "88d52753-a28e-4600-96cf-8b236d850418",
"domainName" : "b79d9089-452b-4f43-a3b5-14f3df66b956.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2383-nc",
"productVersion" : "7.3.37",
"hostId" : "f66d4360-9b7b-4f11-932d-c3d31004c9fd",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.554468Z",
"updatedAt" : "2024-09-02T06:40:04.556711Z",
"deletedAt" : null,
"createdBy" : "0c33385c-7899-4cda-9d3b-acfdc38fb300",
"deletedBy" : null,
"softwareDeploymentStateId" : "6992b5c4-a49d-40ab-9469-7c88ebc11706",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/0914f8dd-3d1c-4fb7-9413-0bfc39a98399",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/88d52753-a28e-4600-96cf-8b236d850418",
"title" : "network-2383"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=88d52753-a28e-4600-96cf-8b236d850418"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=88d52753-a28e-4600-96cf-8b236d850418"
}
}
}, {
"id" : "8ae1c93f-f2c6-40ee-9b4c-a0f974445349",
"ownerIdentityId" : "038435b1-7efa-4666-a8a0-bb2f0a396f7d",
"createdBy" : "038435b1-7efa-4666-a8a0-bb2f0a396f7d",
"createdAt" : "2024-09-02T06:40:03.687386Z",
"updatedAt" : "2024-09-02T06:40:03.688955Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2313",
"networkGroupId" : "9e089891-c7fb-46b4-9b42-6e47819b9555",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "a8c03b90-81bf-4e9e-a722-3adad7d54992",
"ownerIdentityId" : "038435b1-7efa-4666-a8a0-bb2f0a396f7d",
"networkId" : "8ae1c93f-f2c6-40ee-9b4c-a0f974445349",
"domainName" : "a8c03b90-81bf-4e9e-a722-3adad7d54992.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2313-nc",
"productVersion" : "7.3.37",
"hostId" : "5d5ed070-43ee-4c32-8165-7735d3f59c3a",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:03.690816Z",
"updatedAt" : "2024-09-02T06:40:03.697759Z",
"deletedAt" : null,
"createdBy" : "038435b1-7efa-4666-a8a0-bb2f0a396f7d",
"deletedBy" : null,
"softwareDeploymentStateId" : "271b9c0d-e0f7-4c26-9d84-c203175d53ca",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/9e089891-c7fb-46b4-9b42-6e47819b9555",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ae1c93f-f2c6-40ee-9b4c-a0f974445349",
"title" : "network-2313"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=8ae1c93f-f2c6-40ee-9b4c-a0f974445349"
}
}
}, {
"id" : "98df2a0b-63e5-470c-95cf-73999e35f4cd",
"ownerIdentityId" : "3369f0d6-77eb-4bbf-a74f-4631bd4f07bd",
"createdBy" : "3369f0d6-77eb-4bbf-a74f-4631bd4f07bd",
"createdAt" : "2024-09-02T06:40:04.353887Z",
"updatedAt" : "2024-09-02T06:40:04.354289Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2360",
"networkGroupId" : "6ac16be7-46fe-4565-8b6d-de464482a832",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "436b661c-50d8-4a47-97c7-39f0cf50638c",
"ownerIdentityId" : "3369f0d6-77eb-4bbf-a74f-4631bd4f07bd",
"networkId" : "98df2a0b-63e5-470c-95cf-73999e35f4cd",
"domainName" : "436b661c-50d8-4a47-97c7-39f0cf50638c.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2360-nc",
"productVersion" : "7.3.37",
"hostId" : "70d29bb5-38a3-4a04-b6e6-dec7b9ccc306",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.355152Z",
"updatedAt" : "2024-09-02T06:40:04.357983Z",
"deletedAt" : null,
"createdBy" : "3369f0d6-77eb-4bbf-a74f-4631bd4f07bd",
"deletedBy" : null,
"softwareDeploymentStateId" : "37a6b570-6253-4623-9d3e-8250713e761a",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/6ac16be7-46fe-4565-8b6d-de464482a832",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/98df2a0b-63e5-470c-95cf-73999e35f4cd",
"title" : "network-2360"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=98df2a0b-63e5-470c-95cf-73999e35f4cd"
}
}
}, {
"id" : "a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e",
"ownerIdentityId" : "5be4947b-a9c8-4a4b-a7d3-472a642dfeeb",
"createdBy" : "5be4947b-a9c8-4a4b-a7d3-472a642dfeeb",
"createdAt" : "2024-09-02T06:40:04.258590Z",
"updatedAt" : "2024-09-02T06:40:04.309084Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Upload Test Network",
"networkGroupId" : "de26297b-1df0-4099-9c40-0b70c382d765",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "a324e504-8e17-4e30-8731-b1088dbe840f",
"ownerIdentityId" : "5be4947b-a9c8-4a4b-a7d3-472a642dfeeb",
"networkId" : "a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e",
"domainName" : "4ff57d0a-7b17-4e25-bf35-e609ce154700.sandbox.netfoundry.io",
"alternateDomainName" : null,
"port" : 8443,
"name" : "NCAWSi-testncinstance",
"productVersion" : "7.3.18",
"hostId" : "6f319718-98ba-4f66-8679-283370690e86",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.265322Z",
"updatedAt" : "2024-09-02T06:40:04.301056Z",
"deletedAt" : null,
"createdBy" : "5be4947b-a9c8-4a4b-a7d3-472a642dfeeb",
"deletedBy" : null,
"softwareDeploymentStateId" : "ed4f5b18-1d5d-4174-96d6-c965b8891927",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/de26297b-1df0-4099-9c40-0b70c382d765",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e",
"title" : "Upload Test Network"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=a1c47c1f-48d0-4dd9-a023-f9ffcf317e8e"
}
}
}, {
"id" : "a737f8f1-1b40-43a8-94fa-5eeadbb8edae",
"ownerIdentityId" : "0e55901e-713d-46cd-9d9c-996f47ead345",
"createdBy" : "0e55901e-713d-46cd-9d9c-996f47ead345",
"createdAt" : "2024-09-02T06:40:03.969864Z",
"updatedAt" : "2024-09-02T06:40:03.970319Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2336",
"networkGroupId" : "393b98cd-42b3-4848-99b0-6737274c6a54",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "12097599-9e98-414e-9af5-8caaecea0ec4",
"ownerIdentityId" : "0e55901e-713d-46cd-9d9c-996f47ead345",
"networkId" : "a737f8f1-1b40-43a8-94fa-5eeadbb8edae",
"domainName" : "12097599-9e98-414e-9af5-8caaecea0ec4.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2336-nc",
"productVersion" : "7.3.37",
"hostId" : "fd4f5a25-fe2c-4e5d-ba79-e33bb440ad17",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:03.971185Z",
"updatedAt" : "2024-09-02T06:40:03.973378Z",
"deletedAt" : null,
"createdBy" : "0e55901e-713d-46cd-9d9c-996f47ead345",
"deletedBy" : null,
"softwareDeploymentStateId" : "4bde61d5-26bc-4c30-89b9-cd7edf209d80",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/393b98cd-42b3-4848-99b0-6737274c6a54",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a737f8f1-1b40-43a8-94fa-5eeadbb8edae",
"title" : "network-2336"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=a737f8f1-1b40-43a8-94fa-5eeadbb8edae"
}
}
}, {
"id" : "a9df13b7-c53b-4f6c-b69b-f55283c9cb75",
"ownerIdentityId" : "6e323e38-92fa-4b5b-a8fd-3e92969f982e",
"createdBy" : "6e323e38-92fa-4b5b-a8fd-3e92969f982e",
"createdAt" : "2024-09-02T06:40:04.467335Z",
"updatedAt" : "2024-09-02T06:40:04.496324Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "resume-test",
"networkGroupId" : "4e101bf4-36e5-42b2-8c25-5b6f0ce2f5dc",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "4980a0da-8de3-4885-b378-ac0ea49dae30",
"ownerIdentityId" : "6e323e38-92fa-4b5b-a8fd-3e92969f982e",
"networkId" : "a9df13b7-c53b-4f6c-b69b-f55283c9cb75",
"domainName" : "new-domain.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "resume-test-nc",
"productVersion" : "7.3.37",
"hostId" : "bfe0a283-0474-4f90-ada9-5c5ae2db7484",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.468404Z",
"updatedAt" : "2024-09-02T06:40:04.495480Z",
"deletedAt" : null,
"createdBy" : "6e323e38-92fa-4b5b-a8fd-3e92969f982e",
"deletedBy" : null,
"softwareDeploymentStateId" : "317ad95a-0261-4569-8d95-e3d365df8a75",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/4e101bf4-36e5-42b2-8c25-5b6f0ce2f5dc",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a9df13b7-c53b-4f6c-b69b-f55283c9cb75",
"title" : "resume-test"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=a9df13b7-c53b-4f6c-b69b-f55283c9cb75"
}
}
}, {
"id" : "c45fc30f-378a-46d9-93fa-79d35c1ac1b2",
"ownerIdentityId" : "cf8e65aa-2711-4201-8d4b-ce0ef04b5d3e",
"createdBy" : "cf8e65aa-2711-4201-8d4b-ce0ef04b5d3e",
"createdAt" : "2024-09-02T06:40:04.461843Z",
"updatedAt" : "2024-09-02T06:40:04.462239Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2366",
"networkGroupId" : "1dbe362e-4eb3-47d0-b798-4af276656964",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "35d27925-74a0-468b-9bf6-6a28db6fc5ce",
"ownerIdentityId" : "cf8e65aa-2711-4201-8d4b-ce0ef04b5d3e",
"networkId" : "c45fc30f-378a-46d9-93fa-79d35c1ac1b2",
"domainName" : "35d27925-74a0-468b-9bf6-6a28db6fc5ce.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2366-nc",
"productVersion" : "7.3.37",
"hostId" : "43565869-b0d2-43e9-9471-ac248cdb635f",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.463116Z",
"updatedAt" : "2024-09-02T06:40:04.465133Z",
"deletedAt" : null,
"createdBy" : "cf8e65aa-2711-4201-8d4b-ce0ef04b5d3e",
"deletedBy" : null,
"softwareDeploymentStateId" : "cbcf1879-d20e-496c-8b24-2c98f7703fc5",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/1dbe362e-4eb3-47d0-b798-4af276656964",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c45fc30f-378a-46d9-93fa-79d35c1ac1b2",
"title" : "network-2366"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=c45fc30f-378a-46d9-93fa-79d35c1ac1b2"
}
}
}, {
"id" : "d648ae61-6baf-4a24-99e0-537b8226b276",
"ownerIdentityId" : "b0a38518-75f6-4177-a705-8d2accf5bfc1",
"createdBy" : "b0a38518-75f6-4177-a705-8d2accf5bfc1",
"createdAt" : "2024-09-02T06:40:04.234016Z",
"updatedAt" : "2024-09-02T06:40:04.234479Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2354",
"networkGroupId" : "de26297b-1df0-4099-9c40-0b70c382d765",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "28b05149-b0ab-4340-bf28-1738ab21460f",
"ownerIdentityId" : "b0a38518-75f6-4177-a705-8d2accf5bfc1",
"networkId" : "d648ae61-6baf-4a24-99e0-537b8226b276",
"domainName" : "28b05149-b0ab-4340-bf28-1738ab21460f.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2354-nc",
"productVersion" : "7.3.37",
"hostId" : "72cd414f-79d6-44db-b00f-521799205bb2",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.235361Z",
"updatedAt" : "2024-09-02T06:40:04.237811Z",
"deletedAt" : null,
"createdBy" : "b0a38518-75f6-4177-a705-8d2accf5bfc1",
"deletedBy" : null,
"softwareDeploymentStateId" : "a474ec66-a600-4189-91d7-2ebbad0eb0aa",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/de26297b-1df0-4099-9c40-0b70c382d765",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d648ae61-6baf-4a24-99e0-537b8226b276",
"title" : "network-2354"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=d648ae61-6baf-4a24-99e0-537b8226b276"
}
}
}, {
"id" : "e6066363-d7f4-40b1-a086-5a429e1b06eb",
"ownerIdentityId" : "d540f113-ccd6-43e8-8a6a-3fab373bae54",
"createdBy" : "d540f113-ccd6-43e8-8a6a-3fab373bae54",
"createdAt" : "2024-09-02T06:40:04.019786Z",
"updatedAt" : "2024-09-02T06:40:04.093520Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Test Network Yaml",
"networkGroupId" : "393b98cd-42b3-4848-99b0-6737274c6a54",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "c7f19c6a-fe4d-44de-98fa-5db0dfb5313a",
"ownerIdentityId" : "d540f113-ccd6-43e8-8a6a-3fab373bae54",
"networkId" : "e6066363-d7f4-40b1-a086-5a429e1b06eb",
"domainName" : "ddf1b9b2-9433-42e5-a834-514fdccf49c2.sandbox.netfoundry.io",
"alternateDomainName" : null,
"port" : 8443,
"name" : "NCAWSi-testncinstance",
"productVersion" : "7.3.18",
"hostId" : "a929b7cc-27df-4595-b679-a5e9e714d533",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.034129Z",
"updatedAt" : "2024-09-02T06:40:04.080044Z",
"deletedAt" : null,
"createdBy" : "d540f113-ccd6-43e8-8a6a-3fab373bae54",
"deletedBy" : null,
"softwareDeploymentStateId" : "2f3c9e9b-1946-4c65-a53e-e2fd92df1840",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/393b98cd-42b3-4848-99b0-6737274c6a54",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e6066363-d7f4-40b1-a086-5a429e1b06eb",
"title" : "Test Network Yaml"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=e6066363-d7f4-40b1-a086-5a429e1b06eb"
}
}
}, {
"id" : "ee24ce75-47e3-41ea-96e5-7b4384eb55e9",
"ownerIdentityId" : "fc2b3ad7-6822-436a-bd50-839bd61cba8d",
"createdBy" : "fc2b3ad7-6822-436a-bd50-839bd61cba8d",
"createdAt" : "2024-09-02T06:40:03.705547Z",
"updatedAt" : "2024-09-02T06:40:03.810982Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "suspend-test",
"networkGroupId" : "3a1d4472-1057-4aab-b6b3-bd19d6c8a5aa",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "SUSPENDED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "e6011e6b-4a34-438f-abf4-fdd08de45f0c",
"ownerIdentityId" : "fc2b3ad7-6822-436a-bd50-839bd61cba8d",
"networkId" : "ee24ce75-47e3-41ea-96e5-7b4384eb55e9",
"domainName" : "e6011e6b-4a34-438f-abf4-fdd08de45f0c.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "suspend-test-nc",
"productVersion" : "7.3.37",
"hostId" : "0c56486c-5871-4f12-8855-3d3f46153b08",
"status" : "SUSPENDED",
"createdAt" : "2024-09-02T06:40:03.706999Z",
"updatedAt" : "2024-09-02T06:40:03.809066Z",
"deletedAt" : null,
"createdBy" : "fc2b3ad7-6822-436a-bd50-839bd61cba8d",
"deletedBy" : null,
"softwareDeploymentStateId" : "e9f68b4e-728c-4f48-b297-2e878a83b570",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/3a1d4472-1057-4aab-b6b3-bd19d6c8a5aa",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee24ce75-47e3-41ea-96e5-7b4384eb55e9",
"title" : "suspend-test"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=ee24ce75-47e3-41ea-96e5-7b4384eb55e9"
}
}
}, {
"id" : "f2c4e5d1-02ec-4566-9058-fa93702d0683",
"ownerIdentityId" : "4f5414ce-d5dc-4674-97e9-6de087a93e0e",
"createdBy" : "4f5414ce-d5dc-4674-97e9-6de087a93e0e",
"createdAt" : "2024-09-02T06:40:03.868336Z",
"updatedAt" : "2024-09-02T06:40:03.868798Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2330",
"networkGroupId" : "8fea8183-d1a3-4bb5-a931-4222c9ca6238",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "44d04368-ff44-45fe-b8e4-e63067db9fa5",
"ownerIdentityId" : "4f5414ce-d5dc-4674-97e9-6de087a93e0e",
"networkId" : "f2c4e5d1-02ec-4566-9058-fa93702d0683",
"domainName" : "44d04368-ff44-45fe-b8e4-e63067db9fa5.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2330-nc",
"productVersion" : "7.3.37",
"hostId" : "9c8df406-7933-46bf-a2d2-a8ef9d662889",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:03.869829Z",
"updatedAt" : "2024-09-02T06:40:03.872383Z",
"deletedAt" : null,
"createdBy" : "4f5414ce-d5dc-4674-97e9-6de087a93e0e",
"deletedBy" : null,
"softwareDeploymentStateId" : "d18e9d9f-08ab-45d8-a283-4fe58fab7ab9",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/8fea8183-d1a3-4bb5-a931-4222c9ca6238",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f2c4e5d1-02ec-4566-9058-fa93702d0683",
"title" : "network-2330"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=f2c4e5d1-02ec-4566-9058-fa93702d0683"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks"
}
},
"page" : {
"size" : 3500,
"totalElements" : 14,
"totalPages" : 1,
"number" : 0
}
}
Get Network
GET /v2/networks/{id}
Authorization
This endpoint requires read
action on the network
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
networkControllers |
true |
|
edgeRouters |
true |
|
edgeRouterPolicies |
true |
|
endpoints |
true |
|
services |
true |
|
appWans |
true |
|
certificateAuthorities |
true |
|
hosts |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/networks/70147b84-eef8-4496-9eb4-e8850868f390' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJwcU1uUmd2TmYwb3RCTEg4eWhUajNnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImIwMjA4YzNmLWEyOTctNGNkOC1hYjc3LTg3M2Q1YzA0OTkxZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIwNCwiZXhwIjoxNzI1MjYyODA0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjU5YTMwNTRjLTVmOGYtNDA0OC1hMmEwLTM3YTJhZjk0MTk4Y1wiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIwNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.GOD3fwbOVw37kLAm8EPhGIRbZIExcz4carg-Oi5f8g9zJDNBGPUB7xZWOBk3fZo4DrwuViifYF6CbbmqVWK-smQ_fvmurRpff4jImVZF4HU4H9B6ucluTmwd5TOMPCjcRvlIHVHUbcQVzmveh_tX6tQqgyWTx_-WcyZHME9Uh2ByMlWjcwYcJRRyL_Y0Q1Lz1PXJfrFYcMAf7JSoA4ZJYlU2i7ElH1nqoK-6gyOIFjc_SV2lM1foFw0iJEuKPAev_nBJ5-fv2WGzIp7U-mZExx4iobPCfvXA-iHQtOguhPQnRCSPozBorEWcBnNAhyUBx9g9RFBInzD6sy01JjgOTw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 4430
{
"id" : "70147b84-eef8-4496-9eb4-e8850868f390",
"ownerIdentityId" : "eccbaf66-85c0-4bd1-82c6-29608d4dc5a9",
"createdBy" : "eccbaf66-85c0-4bd1-82c6-29608d4dc5a9",
"createdAt" : "2024-09-02T06:40:04.193626Z",
"updatedAt" : "2024-09-02T06:40:04.194200Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2348",
"networkGroupId" : "aac357e7-119f-4395-8f25-91f6bcf8c39f",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "09b5f89c-d7e8-4be3-9663-f724eb92dae9",
"ownerIdentityId" : "eccbaf66-85c0-4bd1-82c6-29608d4dc5a9",
"networkId" : "70147b84-eef8-4496-9eb4-e8850868f390",
"domainName" : "09b5f89c-d7e8-4be3-9663-f724eb92dae9.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "network-2348-nc",
"productVersion" : "7.3.37",
"hostId" : "32dc360f-be8d-4c37-94f1-0b7441000f17",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:40:04.195199Z",
"updatedAt" : "2024-09-02T06:40:04.198028Z",
"deletedAt" : null,
"createdBy" : "eccbaf66-85c0-4bd1-82c6-29608d4dc5a9",
"deletedBy" : null,
"softwareDeploymentStateId" : "5bdfd41f-3485-4ecd-8eec-2d3546291546",
"haPrimaryNode" : true
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/aac357e7-119f-4395-8f25-91f6bcf8c39f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/70147b84-eef8-4496-9eb4-e8850868f390",
"title" : "network-2348"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=70147b84-eef8-4496-9eb4-e8850868f390"
}
}
}
Create Network
POST /v2/networks
Authorization
This endpoint requires create
action on the network
resource type.
Path parameters
No parameters.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
networkGroupId |
String |
true |
|
size |
String |
true |
|
name |
String |
true |
|
productVersion |
Object |
true |
|
o365BreakoutCategory |
String |
true |
Must be one of [OPTIMIZE, OPTIMIZE_ALLOW, OPTIMIZE_ALLOW_DEFAULT, NONE]. |
provider |
String |
true |
Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER]. |
region |
String |
true |
|
publicCertEnabled |
Boolean |
true |
|
haEnabled |
Boolean |
true |
|
dnsZoneId |
String |
true |
|
alternateDomainName |
String |
true |
|
customerProviderDetails |
Object |
true |
|
customerProviderDetails.managementPort |
Integer |
true |
|
customerProviderDetails.sshAccessKeyPairName |
String |
true |
|
edgeRouters |
Array[Object] |
true |
|
edgeRouters[].name |
String |
true |
|
edgeRouters[].networkId |
String |
true |
|
edgeRouters[].zitiId |
String |
true |
|
edgeRouters[].provider |
String |
true |
Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER]. |
edgeRouters[].region |
String |
true |
|
edgeRouters[].hostSize |
String |
true |
|
edgeRouters[].linkListener |
Boolean |
true |
|
edgeRouters[].wssListener |
Boolean |
true |
|
edgeRouters[].tunnelerEnabled |
Boolean |
true |
|
edgeRouters[].noTraversal |
Boolean |
true |
|
edgeRouters[].enabled |
Boolean |
true |
|
edgeRouters[].alternateDomainName |
String |
true |
|
edgeRouters[].attributes |
Array[String] |
true |
|
edgeRouters[].endpointAttributes |
Array[String] |
true |
|
edgeRouterPolicies |
Array[Object] |
true |
|
edgeRouterPolicies[].name |
String |
true |
|
edgeRouterPolicies[].networkId |
String |
true |
|
edgeRouterPolicies[].semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
edgeRouterPolicies[].endpointAttributes |
Array[String] |
true |
|
edgeRouterPolicies[].edgeRouterAttributes |
Array[String] |
true |
|
serviceEdgeRouterPolicies |
Array[Object] |
true |
|
serviceEdgeRouterPolicies[].networkId |
String |
true |
|
serviceEdgeRouterPolicies[].name |
String |
true |
|
serviceEdgeRouterPolicies[].semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
serviceEdgeRouterPolicies[].edgeRouterAttributes |
Array[String] |
true |
|
serviceEdgeRouterPolicies[].serviceAttributes |
Array[String] |
true |
|
servicePolicies |
Array[Object] |
true |
|
servicePolicies[].networkId |
String |
true |
|
servicePolicies[].name |
String |
true |
|
servicePolicies[].type |
String |
true |
Must be one of [Dial, Bind]. |
servicePolicies[].semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
servicePolicies[].serviceAttributes |
Array[String] |
true |
|
servicePolicies[].endpointAttributes |
Array[String] |
true |
|
servicePolicies[].postureCheckAttributes |
Array[String] |
true |
|
services |
Array[Object] |
true |
|
services[].networkId |
String |
true |
|
services[].name |
String |
true |
|
services[].encryptionRequired |
Boolean |
true |
|
services[].terminatorStrategy |
String |
true |
|
services[].configIds |
Array[Object] |
true |
|
services[].configNames |
Array[String] |
true |
|
services[].configs |
Array[Object] |
true |
|
services[].configs[].networkId |
String |
true |
|
services[].configs[].name |
String |
true |
|
services[].configs[].configTypeId |
String |
true |
|
services[].configs[].configTypeName |
String |
true |
|
services[].configs[].configType |
Object |
true |
|
services[].configs[].configType.networkId |
String |
true |
|
services[].configs[].configType.name |
String |
true |
|
services[].configs[].configType.schema |
Object |
true |
|
services[].configs[].data |
Object |
true |
|
services[].attributes |
Array[String] |
true |
|
services[].modelType |
String |
true |
Must be one of [Generic, TunnelerToSdk, TunnelerToEndpoint, TunnelerToEdgeRouter, AdvancedTunnelerToEndpoint, ZSSH]. |
services[].model |
Object |
true |
|
certificateAuthorities |
Array[Object] |
true |
|
certificateAuthorities[].networkId |
String |
true |
|
certificateAuthorities[].name |
String |
true |
|
certificateAuthorities[].autoCaEnrollmentEnabled |
Boolean |
true |
|
certificateAuthorities[].authEnabled |
Boolean |
true |
|
certificateAuthorities[].ottCaEnrollmentEnabled |
Boolean |
true |
|
certificateAuthorities[].certPem |
String |
true |
|
certificateAuthorities[].endpointAttributes |
Array[String] |
true |
|
certificateAuthorities[].identityNameFormat |
String |
true |
|
endpoints |
Array[Object] |
true |
|
endpoints[].networkId |
String |
true |
|
endpoints[].name |
String |
true |
|
endpoints[].enrollmentMethod |
Object |
true |
|
endpoints[].enrollmentMethod.ott |
Boolean |
true |
|
endpoints[].enrollmentMethod.updb |
String |
true |
|
endpoints[].enrollmentMethod.ottca |
String |
true |
|
endpoints[].externalId |
String |
true |
|
endpoints[].authPolicyId |
String |
true |
|
endpoints[].attributes |
Array[String] |
true |
|
endpoints[].syncId |
String |
true |
|
endpoints[].syncResourceId |
String |
true |
|
endpoints[].shareRegistration |
Object |
true |
|
endpoints[].shareRegistration.id |
String |
true |
|
endpoints[].shareRegistration.toList |
Array[String] |
true |
|
endpoints[].shareRegistration.ccList |
Array[String] |
true |
|
endpoints[].shareRegistration.subject |
String |
true |
|
endpoints[].shareRegistration.type |
String |
true |
Must be one of [Email]. |
appWans |
Array[Object] |
true |
|
appWans[].networkId |
String |
true |
|
appWans[].name |
String |
true |
|
appWans[].serviceAttributes |
Array[String] |
true |
|
appWans[].endpointAttributes |
Array[String] |
true |
|
appWans[].postureCheckAttributes |
Array[String] |
true |
|
postureChecks |
Array[Object] |
true |
|
postureChecks[].name |
String |
true |
|
postureChecks[].networkId |
String |
true |
|
postureChecks[].type |
String |
true |
Must be one of [OS, PROCESS, DOMAIN, MAC, MFA, PROCESS_MULTI]. |
postureChecks[].attributes |
Array[String] |
true |
|
postureChecks[].data |
Object |
true |
|
postureChecks[].data.domains |
Array[String] |
true |
|
postureChecks[].data.macAddresses |
Array[String] |
true |
|
postureChecks[].data.timeoutSeconds |
Integer |
true |
|
postureChecks[].data.promptOnWake |
Boolean |
true |
|
postureChecks[].data.promptOnUnlock |
Boolean |
true |
|
postureChecks[].data.ignoreLegacyEndpoints |
Boolean |
true |
|
postureChecks[].data.operatingSystems |
Array[Object] |
true |
|
postureChecks[].data.operatingSystems[].type |
String |
true |
Must be one of [Windows, Android, iOS, Linux, macOS, WindowsServer]. |
postureChecks[].data.operatingSystems[].versions |
Array[String] |
true |
|
postureChecks[].data.process |
Object |
true |
|
postureChecks[].data.process.osType |
String |
true |
Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS]. |
postureChecks[].data.process.path |
String |
true |
|
postureChecks[].data.process.hashes |
Array[String] |
true |
|
postureChecks[].data.process.signerFingerprint |
String |
true |
|
postureChecks[].data.processes |
Array[Object] |
true |
|
postureChecks[].data.processes[].osType |
String |
true |
Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS]. |
postureChecks[].data.processes[].path |
String |
true |
|
postureChecks[].data.processes[].hashes |
Array[String] |
true |
|
postureChecks[].data.processes[].signerFingerprints |
Array[String] |
true |
|
postureChecks[].data.semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
networkControllers |
true |
|
edgeRouters |
true |
|
edgeRouterPolicies |
true |
|
endpoints |
true |
|
services |
true |
|
appWans |
true |
|
certificateAuthorities |
true |
|
hosts |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/networks' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiItTXhnUDJXV3R2Q1ZQN1lnOVBrMHFnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImNmNjIwMDkyLWI4MGQtNGRlNC05NmFmLWU4YWJlZWZlMzYzZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIwNSwiZXhwIjoxNzI1MjYyODA1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjI4YmEzMTE3LThmODUtNDRjZC04Mzk1LTk0ODUzZWIwNDA4MFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIwNX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ji36fE0srGzErFHkir3WaqDvj_HPFuLySgF4Zxng-x1WbilBDZ3-NWtAPyhgyogVPJoRRjVUksSfV_CswDowswzqAqwmUMfIzlW4lwU1FeaBcqF4F-ZUWGK6NY73v7hw24rrk3RhOI5gZnUtwenJSr58H17FPF9RESL7h6BQPgDvqSJUa_KBUs9f_tBBax_FY4AbLhEEEbrVAFUgkg9b_4idF39aXF1np4D6r5H9acQCSj3wRyPKcpc2CCP-z97eCkIqc6p2RX22FrlV8D5NzAAVQtNmuXjATxNo3RzMyl7IqjzOt61blde1rswOax5EJdEhDxKlkvkKh-gMQaF60A' \
-d '{"networkGroupId":"9565d12e-615d-46e3-967c-798a48454474","size":"small","name":"Create Test Network","o365BreakoutCategory":"NONE","provider":"AWS","region":"us-east-1","publicCertEnabled":false,"haEnabled":false,"edgeRouters":[],"edgeRouterPolicies":[],"serviceEdgeRouterPolicies":[],"servicePolicies":[],"services":[],"certificateAuthorities":[],"endpoints":[],"appWans":[],"postureChecks":[]}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 3669
{
"id" : "bdb8d91a-1714-439a-917a-f122e271f5cd",
"ownerIdentityId" : "cf620092-b80d-4de4-96af-e8abeefe363d",
"createdBy" : "cf620092-b80d-4de4-96af-e8abeefe363d",
"createdAt" : "2024-09-02T06:40:05.012362Z",
"updatedAt" : "2024-09-02T06:40:05.012362Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Create Test Network",
"networkGroupId" : "9565d12e-615d-46e3-967c-798a48454474",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "us-east-1",
"status" : "PROVISIONING",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/9565d12e-615d-46e3-967c-798a48454474",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bdb8d91a-1714-439a-917a-f122e271f5cd",
"title" : "Create Test Network"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=bdb8d91a-1714-439a-917a-f122e271f5cd"
}
}
}
Delete Network
DELETE /v2/networks/{id}
Authorization
This endpoint requires delete
action on the network
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
networkControllers |
true |
|
edgeRouters |
true |
|
edgeRouterPolicies |
true |
|
endpoints |
true |
|
services |
true |
|
appWans |
true |
|
certificateAuthorities |
true |
|
hosts |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/networks/b5e4d59b-04f6-4bd6-b74f-3553951ec43c' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ0Qkp0STFuWFBWVFpXQ3BBcUFvX2JBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjAwNzk1ZTJkLTU0MWQtNDA0NS1hYWYyLWIwYWU1YWIyYmJkMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIwNSwiZXhwIjoxNzI1MjYyODA1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjY3YTEwZjUyLWNlYmEtNGU0My1hZTcwLTkwYmUxMDk0MjUxMFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIwNX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.r8tNTam9Gc1Clvqzq55ViBIxIQXrq4xgj8OvxckGeJexEuJ2CLoWXpsJC3o1kJGaG-kxEerxz1z24ecrKOrZsO2cWYiRx_xMurt9ZsbkzRw2Xuy2_fKcdfnIJ6cyBQhTffpCYS1J_NAc8Zq5qukbf2XcQm7RV09oyb87jE5AjyEPozNnv7UjP6AsLER6LTIX42N-jtTFp33LICP9lJ-iDBGGZqJcnAs5pwvFav1dhG9IS-YXtxByd1nrjNdOJIBJ97SIUBQF7RODUbIFC9GLOfdmPbZ6efJFb9Aia2zMRPpfHMuN2GC6YNsRVWznPspBKw9nCIdA9yQ75ZF52D7C6A'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 3685
{
"id" : "b5e4d59b-04f6-4bd6-b74f-3553951ec43c",
"ownerIdentityId" : "6e4f6bb7-27dd-43a1-ad69-c1de85422d8a",
"createdBy" : "6e4f6bb7-27dd-43a1-ad69-c1de85422d8a",
"createdAt" : "2024-09-02T06:40:05.425497Z",
"updatedAt" : "2024-09-02T06:40:05.441735Z",
"deletedBy" : "00795e2d-541d-4045-aaf2-b0ae5ab2bbd3",
"deletedAt" : null,
"name" : "network-2460",
"networkGroupId" : "4344c21d-10f8-4b75-8b8d-f908eceb7d11",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "DELETING",
"publicCertEnabled" : false,
"haEnabled" : false,
"dnsZoneId" : null,
"o365BreakoutCategory" : "NONE",
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/4344c21d-10f8-4b75-8b8d-f908eceb7d11",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b5e4d59b-04f6-4bd6-b74f-3553951ec43c",
"title" : "network-2460"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=b5e4d59b-04f6-4bd6-b74f-3553951ec43c"
}
}
}
Network Controllers
Get Network Controller
GET /v2/network-controllers/{id}
Authorization
This endpoint requires read
action on the network-controller
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-controllers/feb51e11-88c5-4144-ab16-ae685e4ecd8f' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJzQUhYdTNsYmpiVmFFaFhDUVdRZkVnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImEyZTkzMzEwLWQ4ODEtNDEzZi05ZWU0LTU2ODg4Njk3ZjZiZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTE3MywiZXhwIjoxNzI1MjYyNzczLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjUzNzc5ZTJlLTY5ZmQtNDAzYS04YTM2LTg1ZjE5ZTk2YTViOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTE3M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.BWBZwpwaB40Rd0N2mGgZhnRVZ5kOK8IOEf7GkPEg1_yYwK5OFIfn7dcjeSPNqY828-Rh1lDnnxYP8tLWjB9Xv67K5uE0Uf9ZQSbW_b_sxfuCXcONb9YfCgTneGAt1P9e2lrrM_vtLg56EY0AVD5NW1Z6hCHYJgSVXWZzCYVXQKgWN-zQJr1vae8bmf6ZpCdTWIynp2ENLhsCk-jHfM3UdnOdrUvmTwGoMFiuP_WMOpIS0QylhV7E0bkJRkayWJrInZKDl3JNJ6igdXRPzo3nDqc0KOSTGl3znxcCWGbHREnwv9izzSF_H4BC5dtqHzXQLDeyFQZTejcGQAloO01itQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1637
{
"id" : "feb51e11-88c5-4144-ab16-ae685e4ecd8f",
"ownerIdentityId" : "19b7157d-b9f5-4388-bc09-7f71a1389eba",
"networkId" : "e602d9c5-f844-4e1b-b66d-b6aa95194bbe",
"domainName" : "new-domain.nf.io",
"alternateDomainName" : null,
"port" : 443,
"name" : "networkcontroller-controller-test-nc",
"productVersion" : "7.3.37",
"hostId" : "11bccc96-0d7d-41e7-a50f-c5adad5fc824",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:39:31.005971Z",
"updatedAt" : "2024-09-02T06:39:33.689420Z",
"deletedAt" : null,
"createdBy" : "19b7157d-b9f5-4388-bc09-7f71a1389eba",
"deletedBy" : null,
"softwareDeploymentStateId" : "343da3ac-7c49-44bb-b47d-431100297e24",
"haPrimaryNode" : true,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/feb51e11-88c5-4144-ab16-ae685e4ecd8f",
"title" : "networkcontroller-controller-test-nc"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e602d9c5-f844-4e1b-b66d-b6aa95194bbe",
"profile" : "parent"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/11bccc96-0d7d-41e7-a50f-c5adad5fc824"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/343da3ac-7c49-44bb-b47d-431100297e24"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/343da3ac-7c49-44bb-b47d-431100297e24",
"deprecation" : "Use software-deployment-state link instead"
}
}
}
Get Network Controller Session
GET /v2/network-controllers/{id}/session
Authorization
This endpoint requires read-platform-protected
action on the network-controller
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-controllers/feb51e11-88c5-4144-ab16-ae685e4ecd8f/session' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJpR3lwb2xGLXBmalNsWXZmNWNiRjJRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjI3MTMxMDRiLTdkNzYtNGYyZS04MWYxLTk1YTk0M2M2NjBkZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTE3MSwiZXhwIjoxNzI1MjYyNzcxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjhhZmZkYTllLWU0NzMtNGZmNi04ODYxLTk3ZWYwMTQzMjI3ZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTE3MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.HpJiwlg4oa3QCtwR0L6lUSf9Y5LZ77OR9QI_qT7iuuRCMlM_vqTUFMIVNHx-jbsji9w5xpHNnAu3dkP6rTKRc2QyhLtkSPZLaKnU15ur9yC77BwjoYSuF7g_tSzJtnVIQgwj71KyMgR5XYw_xFp2qhCMFG2sLRTGTNxT8C9xW72BffgimWBcQQMHqzs8O822IMmZdGf-SH4yK1H-dV4uIBElwQ7NVAX5d-pyVR0qwu6ujcW9fNmpwv_JXu2i11lNtNzMdYizh8dnfAipeyAi-xUS6GlM8_S92EjEOt9dVrpt9h-czv_tWQE3zK2fe8KOMivlSssgoci9lLjcrrt2TA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 408
{
"sessionToken" : "--- session ---",
"expiresAt" : "2024-09-02T06:39:31.469+00:00",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/feb51e11-88c5-4144-ab16-ae685e4ecd8f/session"
},
"parent" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/feb51e11-88c5-4144-ab16-ae685e4ecd8f"
}
}
}
Find Network Controllers
GET /v2/network-controllers
Authorization
This endpoint requires read
action on the network-controller
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
isDeleted |
Boolean |
true |
Deprecated.. |
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
ownerIdentityId |
String |
true |
|
networkId |
String |
true |
|
domainName |
String |
true |
|
alternateDomainName |
String |
true |
|
port |
Integer |
true |
|
name |
String |
true |
|
productVersion |
Object |
true |
|
hostId |
String |
true |
|
status |
String |
true |
Must be one of [NEW, PROVISIONING, PROVISIONED, ERROR, UPDATING, SUSPENDED, REPLACING, DELETING, DELETED]. |
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedAt |
String |
true |
|
createdBy |
String |
true |
|
deletedBy |
String |
true |
|
softwareDeploymentStateId |
String |
true |
|
haPrimaryNode |
Boolean |
true |
|
publicDomainName |
String |
true |
|
managementZitiIdentity |
Object |
true |
|
managementZitiIdentity.id |
String |
true |
|
managementZitiIdentity.name |
String |
true |
|
managementZitiIdentity.type |
Object |
true |
|
managementZitiIdentity.type.id |
String |
true |
|
managementZitiIdentity.type.name |
String |
true |
|
managementZitiIdentity.typeId |
String |
true |
|
managementZitiIdentity.externalId |
String |
true |
|
managementZitiIdentity.authPolicyId |
String |
true |
|
managementZitiIdentity.authenticators |
Object |
true |
|
managementZitiIdentity.authenticators.updb |
Object |
true |
|
managementZitiIdentity.authenticators.updb.username |
String |
true |
|
managementZitiIdentity.authenticators.cert |
Object |
true |
|
managementZitiIdentity.authenticators.cert.fingerprint |
String |
true |
|
managementZitiIdentity.enrollment |
Object |
true |
|
managementZitiIdentity.enrollment.ott |
Object |
true |
|
managementZitiIdentity.enrollment.ott.id |
String |
true |
|
managementZitiIdentity.enrollment.ott.token |
String |
true |
|
managementZitiIdentity.enrollment.ott.jwt |
String |
true |
|
managementZitiIdentity.enrollment.ott.expiresAt |
String |
true |
|
managementZitiIdentity.enrollment.ottca |
Object |
true |
|
managementZitiIdentity.enrollment.ottca.id |
String |
true |
|
managementZitiIdentity.enrollment.ottca.caId |
String |
true |
|
managementZitiIdentity.enrollment.ottca.token |
String |
true |
|
managementZitiIdentity.enrollment.ottca.jwt |
String |
true |
|
managementZitiIdentity.enrollment.ottca.expiresAt |
String |
true |
|
managementZitiIdentity.enrollment.updb |
Object |
true |
|
managementZitiIdentity.enrollment.updb.id |
String |
true |
|
managementZitiIdentity.enrollment.updb.token |
String |
true |
|
managementZitiIdentity.enrollment.updb.jwt |
String |
true |
|
managementZitiIdentity.enrollment.updb.expiresAt |
String |
true |
|
managementZitiIdentity.disabled |
Boolean |
true |
|
managementZitiIdentity.disabledAt |
String |
true |
|
managementZitiIdentity.disabledUntil |
String |
true |
|
managementZitiIdentity.envInfo |
Object |
true |
|
managementZitiIdentity.envInfo.arch |
String |
true |
|
managementZitiIdentity.envInfo.os |
String |
true |
|
managementZitiIdentity.envInfo.osRelease |
String |
true |
|
managementZitiIdentity.envInfo.osVersion |
String |
true |
|
managementZitiIdentity.sdkInfo |
Object |
true |
|
managementZitiIdentity.sdkInfo.appId |
String |
true |
|
managementZitiIdentity.sdkInfo.appVersion |
String |
true |
|
managementZitiIdentity.sdkInfo.branch |
String |
true |
|
managementZitiIdentity.sdkInfo.revision |
String |
true |
|
managementZitiIdentity.sdkInfo.type |
String |
true |
|
managementZitiIdentity.sdkInfo.version |
String |
true |
|
managementZitiIdentity.hasApiSession |
Boolean |
true |
|
managementZitiIdentity.hasEdgeRouterConnection |
Boolean |
true |
|
managementZitiIdentity.roleAttributes |
Array[String] |
true |
|
managementZitiIdentity.tags |
Map |
true |
|
managementZitiIdentity.appData |
Map |
true |
|
managementZitiIdentity.createdAt |
String |
true |
|
managementZitiIdentity.updatedAt |
String |
true |
|
managementZitiIdentity.defaultAdmin |
Boolean |
true |
|
managementZitiIdentity.admin |
Boolean |
true |
|
managementZitiIdentity.mfaEnabled |
Boolean |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-controllers?createdAt=%3E%3D2024-09-02T05:38:43.054609630Z' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJVNVdROVRJdkE0Rm1RelFMalFrZGp3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQ3NmQ4MjJjLTYzOTUtNGE5Yy04Y2I4LWNjMmNlNGI3Njg1YiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTEyMywiZXhwIjoxNzI1MjYyNzIzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImM4NjlkZjBhLTE2Y2YtNDc3My04YWMyLTFiN2M4MjlmNDg3M1wiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTEyM31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Gj33aD6Q1E8Ly62agtTkXoPl9lACs45GoWlorh-eYJAdkRlD-gMis3nbtoABsy37JF5CR-LfCVX0e8T2ic3I4-03GHGcqiGwMQ4WEFweWtXqm185tNb7oYSl5Dmi7U2v9BP2GdqL3z3SxElyVPKyAXBZNE3mt0hTwMpExTfve_2BEKMj5XXVw2-w4cPWR7VeznY8W25yU3oSOQu3V9rFBK6TEVHHzVgenLY0wbFgXZE6rPYvrE9050WckRFnzSevNF5T3iln_NO77QVojfH8fXHTeDSION8pv-r9JkckeoeVcfPCZi59UDr9OK7MjOuUOXmly0nvl4gRGeyFYrx9PA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2988
{
"_embedded" : {
"networkControllerList" : [ {
"id" : "5ed51170-3c3c-4fdd-b368-54d069dcca20",
"ownerIdentityId" : "8988068a-52c6-42a6-b928-3e6dae4322f0",
"networkId" : "41a19730-fc30-42f5-894f-0acd865e4942",
"domainName" : "a5-wjW3_oDReNkqLu3awB.fake.com",
"alternateDomainName" : null,
"port" : 443,
"name" : "NetworkController Find Test 2 - NC",
"productVersion" : "7.3.37",
"hostId" : "984d3560-fc08-4b23-9a74-f8089bbe4631",
"status" : "PROVISIONING",
"createdAt" : "2024-09-02T06:38:43.025272Z",
"updatedAt" : "2024-09-02T06:38:43.025272Z",
"deletedAt" : null,
"createdBy" : "8988068a-52c6-42a6-b928-3e6dae4322f0",
"deletedBy" : null,
"softwareDeploymentStateId" : null,
"haPrimaryNode" : true,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/984d3560-fc08-4b23-9a74-f8089bbe4631"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/5ed51170-3c3c-4fdd-b368-54d069dcca20",
"title" : "NetworkController Find Test 2 - NC"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/41a19730-fc30-42f5-894f-0acd865e4942",
"profile" : "parent"
}
}
}, {
"id" : "666f2a4e-0c4a-4d46-b27b-a617d3f1590b",
"ownerIdentityId" : "8988068a-52c6-42a6-b928-3e6dae4322f0",
"networkId" : "0975a7c0-02ac-480e-8c30-e46103d3f64d",
"domainName" : "5ffV9U8kNSJN3rAR71dOK.fake.com",
"alternateDomainName" : null,
"port" : 443,
"name" : "NetworkController Find Test 1 - NC",
"productVersion" : "7.3.37",
"hostId" : "34d2590b-5fd8-409a-93ea-ccb70bd58b8e",
"status" : "PROVISIONED",
"createdAt" : "2024-09-02T06:38:43.004872Z",
"updatedAt" : "2024-09-02T06:38:43.004872Z",
"deletedAt" : null,
"createdBy" : "8988068a-52c6-42a6-b928-3e6dae4322f0",
"deletedBy" : null,
"softwareDeploymentStateId" : null,
"haPrimaryNode" : true,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/34d2590b-5fd8-409a-93ea-ccb70bd58b8e"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/666f2a4e-0c4a-4d46-b27b-a617d3f1590b",
"title" : "NetworkController Find Test 1 - NC"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0975a7c0-02ac-480e-8c30-e46103d3f64d",
"profile" : "parent"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?createdAt=%3E%3D2024-09-02T05:38:43.054609630Z"
}
},
"page" : {
"size" : 3500,
"totalElements" : 2,
"totalPages" : 1,
"number" : 0
}
}
Endpoints
Find Endpoints
GET /v2/endpoints
Authorization
This endpoint requires read
action on the endpoint
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
attributes |
Object |
true |
Deprecated.. |
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
networkId |
String |
true |
|
zitiId |
String |
true |
|
name |
String |
true |
|
typeId |
String |
true |
|
appId |
String |
true |
|
appVersion |
String |
true |
|
branch |
String |
true |
|
revision |
String |
true |
|
type |
String |
true |
|
version |
String |
true |
|
arch |
String |
true |
|
os |
String |
true |
|
osRelease |
String |
true |
|
osVersion |
String |
true |
|
externalId |
String |
true |
|
authPolicyId |
String |
true |
|
disabled |
Boolean |
true |
|
disabledAt |
String |
true |
|
disabledUntil |
String |
true |
|
hasApiSession |
Boolean |
true |
|
hasEdgeRouterConnection |
Boolean |
true |
|
lastOnlineAt |
String |
true |
|
syncId |
String |
true |
|
syncResourceId |
String |
true |
|
attributes |
Array[String] |
true |
|
jwt |
String |
true |
|
mfaEnabled |
Boolean |
true |
|
online |
Boolean |
true |
|
managedBy |
String |
true |
|
jwtExpiresAt |
String |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIyVXMtWWhsYXVlOGhjV2t3M2ZaV1BnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjljMGYxMDMyLWU0OTQtNDkyZS04MWE0LTI2NzdlZDEyMzk3NCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA5MywiZXhwIjoxNzI1MjYyNjkzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNkM2E5MWIxLWY5ZjctNGRlZS1iZjkxLTJmNzQ3OWY2MjJkZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA5M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.YRqrnVlg3ldheIbd3A8fHyiGGZOiyBk69TRfXArThQAz5huSvCv61kQuEQ9cDBKap7-Hk0cisN8RVCtW5WjjUlKxDf4qZJAR_rr01vsYevtgmNfzuTH9klM6P7nm_Dd_VZFJatZhT7exEbmH-dlUxCW58OBjUwb3s6JEbNLOnO6DARdZRvcgbe8PNz9RTglVOpf0MadbuVd1T-LruFULs1AcJMs4lPXCL_BGlG8XM0yk-DKOd-TqyDVYUPh_Mct4y1euK1eetWb_qz8mzneydJJTGOlYeuClvuIPEWSvHqC9gPb99FjI6LHbX-ZxzfZqwF2pXPeGh05QQgBQ62OhDA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1886
{
"_embedded" : {
"endpointList" : [ {
"id" : "606bca8b-fcf5-4a1d-8386-16f5e0cc09f3",
"ownerIdentityId" : "06acc633-7cf6-4bb3-9ac9-e936e854a103",
"createdBy" : "06acc633-7cf6-4bb3-9ac9-e936e854a103",
"createdAt" : "2024-09-02T06:38:13.295166Z",
"updatedAt" : "2024-09-02T06:38:13.295166Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "e0b97b61-ccf8-4a49-954b-b3b3dbc8d1a2",
"zitiId" : "ziti-id-481",
"name" : "endpoint-482",
"typeId" : "type",
"appId" : "appId",
"appVersion" : "appVersion",
"branch" : "branch",
"revision" : "revision",
"type" : "User",
"version" : "version",
"arch" : "arch",
"os" : "os",
"osRelease" : "osRelease",
"osVersion" : "osVersion",
"externalId" : "osVersion",
"authPolicyId" : null,
"disabled" : false,
"disabledAt" : null,
"disabledUntil" : null,
"hasApiSession" : false,
"hasEdgeRouterConnection" : false,
"lastOnlineAt" : null,
"syncId" : null,
"syncResourceId" : null,
"attributes" : [ ],
"jwt" : null,
"mfaEnabled" : false,
"online" : false,
"managedBy" : "Unmanaged",
"jwtExpiresAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/606bca8b-fcf5-4a1d-8386-16f5e0cc09f3",
"title" : "endpoint-482"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e0b97b61-ccf8-4a49-954b-b3b3dbc8d1a2",
"profile" : "parent"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints"
}
},
"page" : {
"size" : 3500,
"totalElements" : 1,
"totalPages" : 1,
"number" : 0
}
}
Get Endpoint
GET /v2/endpoints/{id}
Authorization
This endpoint requires read
action on the endpoint
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints/f2b7696c-1345-4633-a329-c3ba370069f3' -i -X GET \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJVdkRldjU2UzVULUdsMko5SlNxUThRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjZlNWM5ZWVlLWMwYTYtNDg0MS05Njc2LTkyZmU5MmVjMjYwOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA5NCwiZXhwIjoxNzI1MjYyNjk0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImJkYjUwOTAzLWVmZjEtNDM4Ny05NTBhLWQzY2YyMzE0MmY3ZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA5NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.rEZykFNfxIdV0Wv3xwjZB_Wa1JVqBtbIm1x8SjOC1qVlsLZPc3Ebo_Hup-WysF89iX7BDYYVUDpuqv0wEXzJeSs4rbkVmg0ZHCMMsg5daiBqgq7KsOMlw4ESTZqWqEy9SlO9fP6ajLfU9cRB7U2z0H8NWJnFHDHivFpuPmTCuE6M4yPHSk21HI4hVupFJtWSq7sfDulChNQwpWZivgGshlcVvAE3t_E79I45eUPbIjuXsPn8AvHeIZ70NQhH1WIyEtiv5I84yiMmPbppFAaLEGVb45bNIB15Q14-7upKKVnDW8yPPwrx1Bh3yOR4FO3HgrXUCAMXWWJqAvXh6NihvQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1299
{
"id" : "f2b7696c-1345-4633-a329-c3ba370069f3",
"ownerIdentityId" : "4d48742c-b182-467c-aa5c-b7367a914bde",
"createdBy" : "4d48742c-b182-467c-aa5c-b7367a914bde",
"createdAt" : "2024-09-02T06:38:14.684081Z",
"updatedAt" : "2024-09-02T06:38:14.684081Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "0293dc9f-d5ac-4e99-a0c5-27fdd4008fbf",
"zitiId" : "ziti-id-538",
"name" : "endpoint-539",
"typeId" : "type",
"appId" : "appId",
"appVersion" : "appVersion",
"branch" : "branch",
"revision" : "revision",
"type" : "User",
"version" : "version",
"arch" : "arch",
"os" : "os",
"osRelease" : "osRelease",
"osVersion" : "osVersion",
"hasApiSession" : false,
"hasEdgeRouterConnection" : false,
"lastOnlineAt" : null,
"syncId" : null,
"syncResourceId" : null,
"attributes" : [ ],
"jwt" : null,
"mfaEnabled" : false,
"online" : false,
"managedBy" : "Unmanaged",
"jwtExpiresAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/f2b7696c-1345-4633-a329-c3ba370069f3",
"title" : "endpoint-539"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0293dc9f-d5ac-4e99-a0c5-27fdd4008fbf",
"profile" : "parent"
}
}
}
Find Endpoints
GET /v2/endpoints
Authorization
This endpoint requires read
action on the endpoint
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
attributes |
Object |
true |
Deprecated.. |
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
networkId |
String |
true |
|
zitiId |
String |
true |
|
name |
String |
true |
|
typeId |
String |
true |
|
appId |
String |
true |
|
appVersion |
String |
true |
|
branch |
String |
true |
|
revision |
String |
true |
|
type |
String |
true |
|
version |
String |
true |
|
arch |
String |
true |
|
os |
String |
true |
|
osRelease |
String |
true |
|
osVersion |
String |
true |
|
externalId |
String |
true |
|
authPolicyId |
String |
true |
|
disabled |
Boolean |
true |
|
disabledAt |
String |
true |
|
disabledUntil |
String |
true |
|
hasApiSession |
Boolean |
true |
|
hasEdgeRouterConnection |
Boolean |
true |
|
lastOnlineAt |
String |
true |
|
syncId |
String |
true |
|
syncResourceId |
String |
true |
|
attributes |
Array[String] |
true |
|
jwt |
String |
true |
|
mfaEnabled |
Boolean |
true |
|
online |
Boolean |
true |
|
managedBy |
String |
true |
|
jwtExpiresAt |
String |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJpQW8zVnNqWlhMMUlJd1hoV2hTdTdnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjUzZTdhNDQ5LTZiMTgtNGYzNy04Y2Y1LWQ1ZTcxMTM5NTJmZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA1MSwiZXhwIjoxNzI1MjYyNjUxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImIxM2Y0N2VjLWM1ZmUtNDQ2Ni04ODUyLWI0NWM4ODY2Yjg5OFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA1MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.G7DStSf3qLA7jaSugIzF3L0_YJFh4o_3HZshJIpG01--EziHzr0tE8XUQw9w-hahqdMZRj2bGESzQ2dybGrhR-IEtCctNps9OfPF87jubkmP6w1Ci4JNdAf4Pifb4UMB9MlJe4Ss_Ea57AGskCZ28rjIWw_Zdqye52_7NO_aBHC6Y8BGbVPCYg1K34xkB0415yunznKCGnJvdwYIeLUHqHw8soxWG6H6niTreaj9FGs6Ae5YfVGyyuXjcfo-7koxZeef0Ddf7D_56uQCSTzpLIRXbgRiSK5RcCOhNBWOVasdictX_6jDpaPPglpikEsdRtr2KVpMvO0UCcxgiWXCxw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 4993
{
"_embedded" : {
"endpointList" : [ {
"id" : "0cc958f0-97d2-48ea-9c09-371dad1a87da",
"ownerIdentityId" : "7d00bcd0-f1d8-482d-b123-cfaa7956757f",
"createdBy" : "7d00bcd0-f1d8-482d-b123-cfaa7956757f",
"createdAt" : "2024-09-02T06:37:31.462447Z",
"updatedAt" : "2024-09-02T06:37:31.462447Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "84148213-b36e-432a-9abf-cd6a0318f671",
"zitiId" : "ziti-id-40",
"name" : "Test Endpoint 3",
"typeId" : "type",
"appId" : "appId",
"appVersion" : "appVersion",
"branch" : "branch",
"revision" : "revision",
"type" : "User",
"version" : "version",
"arch" : "arch",
"os" : "os",
"osRelease" : "osRelease",
"osVersion" : "osVersion",
"hasApiSession" : false,
"hasEdgeRouterConnection" : false,
"lastOnlineAt" : null,
"syncId" : null,
"syncResourceId" : null,
"attributes" : [ ],
"jwt" : null,
"mfaEnabled" : false,
"online" : false,
"managedBy" : "Unmanaged",
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/84148213-b36e-432a-9abf-cd6a0318f671",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/0cc958f0-97d2-48ea-9c09-371dad1a87da",
"title" : "Test Endpoint 3"
}
}
}, {
"id" : "98c84271-c30b-4ed5-a984-744f60d233dc",
"ownerIdentityId" : "a185b17d-f848-4700-93a8-23c22a7ad14f",
"createdBy" : "a185b17d-f848-4700-93a8-23c22a7ad14f",
"createdAt" : "2024-09-02T06:37:31.458964Z",
"updatedAt" : "2024-09-02T06:37:31.458964Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "84148213-b36e-432a-9abf-cd6a0318f671",
"zitiId" : "ziti-id-38",
"name" : "Test Endpoint 2",
"typeId" : "type",
"appId" : "appId",
"appVersion" : "appVersion",
"branch" : "branch",
"revision" : "revision",
"type" : "User",
"version" : "version",
"arch" : "arch",
"os" : "os",
"osRelease" : "osRelease",
"osVersion" : "osVersion",
"hasApiSession" : false,
"hasEdgeRouterConnection" : false,
"lastOnlineAt" : null,
"syncId" : "767ee683-9246-452f-bc51-c60733999827",
"syncResourceId" : "zUKJnzCV3hFFpcMjH2KjA",
"attributes" : [ "#attr3", "#attr1" ],
"jwt" : null,
"mfaEnabled" : false,
"online" : false,
"managedBy" : "Sync",
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/84148213-b36e-432a-9abf-cd6a0318f671",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/98c84271-c30b-4ed5-a984-744f60d233dc",
"title" : "Test Endpoint 2"
}
}
}, {
"id" : "d21f1081-3b2f-4f37-9b34-da93c56ab2ef",
"ownerIdentityId" : "a185b17d-f848-4700-93a8-23c22a7ad14f",
"createdBy" : "a185b17d-f848-4700-93a8-23c22a7ad14f",
"createdAt" : "2024-09-02T06:37:31.447689Z",
"updatedAt" : "2024-09-02T06:37:31.447689Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "84148213-b36e-432a-9abf-cd6a0318f671",
"zitiId" : "ziti-id-36",
"name" : "Test Endpoint 1",
"typeId" : "type",
"appId" : "appId",
"appVersion" : "appVersion",
"branch" : "branch",
"revision" : "revision",
"type" : "User",
"version" : "version",
"arch" : "arch",
"os" : "os",
"osRelease" : "osRelease",
"osVersion" : "osVersion",
"hasApiSession" : false,
"hasEdgeRouterConnection" : false,
"lastOnlineAt" : null,
"syncId" : "4dc87ca0-5f54-4d11-b9ed-19a15b68826b",
"syncResourceId" : "da6o_bvcBqyw65Nce0vkx",
"attributes" : [ "#attr2", "#attr1" ],
"jwt" : null,
"mfaEnabled" : false,
"online" : false,
"managedBy" : "Sync",
"jwtExpiresAt" : null,
"_links" : {
"auth-policy" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/auth-policies/d81a2fed-4a96-44d6-b7ce-035840ff4487"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/84148213-b36e-432a-9abf-cd6a0318f671",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/d21f1081-3b2f-4f37-9b34-da93c56ab2ef",
"title" : "Test Endpoint 1"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints"
}
},
"page" : {
"size" : 3500,
"totalElements" : 3,
"totalPages" : 1,
"number" : 0
}
}
Create Endpoint
POST /v2/endpoints
Authorization
This endpoint requires create
action on the endpoint
resource type.
Path parameters
No parameters.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
networkId |
String |
true |
|
name |
String |
true |
|
enrollmentMethod |
Object |
true |
|
enrollmentMethod.ott |
Boolean |
true |
|
enrollmentMethod.updb |
String |
true |
|
enrollmentMethod.ottca |
String |
true |
|
externalId |
String |
true |
|
authPolicyId |
String |
true |
|
attributes |
Array[String] |
true |
|
syncId |
String |
true |
|
syncResourceId |
String |
true |
|
shareRegistration |
Object |
true |
|
shareRegistration.id |
String |
true |
|
shareRegistration.toList |
Array[String] |
true |
|
shareRegistration.ccList |
Array[String] |
true |
|
shareRegistration.subject |
String |
true |
|
shareRegistration.type |
String |
true |
Must be one of [Email]. |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints' -i -X POST \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ2bHc5ZVlWcDMxRlJLMmk0YlpMeEZ3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImIwODhmMTliLWE4ZjgtNDY5Mi04ZWY1LWM0NDM3NzAxYzQ4NSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA5MywiZXhwIjoxNzI1MjYyNjkzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImQ5NDMwMTA3LTA1NTEtNDZmMy05MWY1LTg3ZWE5MjY0ZTYwMFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA5M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.gPDPpMQC8GIfBe5vO7u0w_RusbNpnzH5xs240h-DihXhsTVVfzzxZkrCNTmehRUPe1piezRSswQkhmN8WQJsdqGXqnkgAP4aht_4-e0KMSkExl4B2UiizGbpvrg6f-qCAjl_PHbh0CQUhPaqr45wAkYjEZ_R3kg6NNh2f0I2p966zRRD54R_vxI1THT80FGGSDX2ehmfO-Nuv3KlrYAniVnrKruLWIX6JLV9o2Od4QthoOpGsmdGMdVKGAKEuyETUi4hkEgKgmLTzWzcHy_NlOjCS1QRllf3L8bDOBazwL7HHppVL1w9_WJm8zWTULqesvsKzhopskKqaysSZAOXuA' \
-d '{"networkId":"c3b4acbb-aea2-4951-ba29-e299c0de3299","name":"Test endpoint 02","enrollmentMethod":{"ott":true,"updb":null,"ottca":null},"attributes":["#clients"],"shareRegistration":{"id":null,"toList":["fake@example.com"],"ccList":null,"subject":"New Endpoint!!","type":null}}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1347
{
"id" : "6580642b-77bb-432d-8fc1-7390f0ed1bc0",
"ownerIdentityId" : "b088f19b-a8f8-4692-8ef5-c4437701c485",
"createdBy" : "b088f19b-a8f8-4692-8ef5-c4437701c485",
"createdAt" : "2024-09-02T06:38:13.811208Z",
"updatedAt" : "2024-09-02T06:38:13.833258Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "c3b4acbb-aea2-4951-ba29-e299c0de3299",
"zitiId" : "ziti.id.suw1fb6u",
"name" : "Test endpoint 02",
"typeId" : "Device",
"appId" : null,
"appVersion" : null,
"branch" : null,
"revision" : null,
"type" : null,
"version" : null,
"arch" : null,
"os" : null,
"osRelease" : null,
"osVersion" : null,
"hasApiSession" : null,
"hasEdgeRouterConnection" : null,
"lastOnlineAt" : null,
"syncId" : null,
"syncResourceId" : null,
"attributes" : [ "#clients" ],
"jwt" : "mock ziti IdentityEnrollment.OneTimeToken jwt",
"mfaEnabled" : false,
"online" : false,
"managedBy" : "Unmanaged",
"jwtExpiresAt" : "2024-09-02T06:43:13.831947Z",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/6580642b-77bb-432d-8fc1-7390f0ed1bc0",
"title" : "Test endpoint 02"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c3b4acbb-aea2-4951-ba29-e299c0de3299",
"profile" : "parent"
}
}
}
Patch Endpoint
PATCH /v2/endpoints/{id}
Authorization
This endpoint requires update
action on the endpoint
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
externalId |
Object |
true |
|
authPolicyId |
Object |
true |
|
attributes |
Array[String] |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints/6b3c1a33-b40e-49f8-8006-b837ba216bf5' -i -X PATCH \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJiTzRqdW9CMjdULTRya0dmY0x1RnVnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjJiY2Q1YmRmLWI0N2UtNDEyYy1hZTc1LTU5OGZiY2IyY2JhOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA5NCwiZXhwIjoxNzI1MjYyNjk0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjcxNTYxMzNmLTg0Y2QtNDlhOS1iMzE2LWFlZjYzMTZhYmU0NVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA5NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Q65hWKen5z2TlhCIAMLxzxkvET6a7q6M5LUXbUNzXnvniDu5yEIE6vFQovfMyBpIs_kRnlbvcVn4uR17oSZ4bXvD7TMf28txzV1MTqQeM4yWhT3PHCRS4Rh4aDL1V_gL5Tqt-wCLxFHoygj36ZsHjRQt-WS-ayAXL9qzc1o8I75fv9OMj8U1o7E8V0t-nRZWDDkWgZJLdeEyjyYJRtigYgttNugo_3_D7qCYOqdbfL778oLN2I6wDo3XFnlcTK2IoIYLW6_wiNdVLaw2SCuveu1Drcqqms3QlO0ummz5j0ZXYz4B58C-gGsiyRotfkh67VNnZc3hJwCFrp13JBtL1w' \
-d '{"name":"Test endpoint 02 updated"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1323
{
"id" : "6b3c1a33-b40e-49f8-8006-b837ba216bf5",
"ownerIdentityId" : "583efc35-c0e9-4201-a9b0-79282692abc8",
"createdBy" : "583efc35-c0e9-4201-a9b0-79282692abc8",
"createdAt" : "2024-09-02T06:38:14.370909Z",
"updatedAt" : "2024-09-02T06:38:14.480601Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "c3c638a7-5ab4-4cf9-8a8c-1db5238af09a",
"zitiId" : "ziti-id-530",
"name" : "Test endpoint 02 updated",
"typeId" : "type",
"appId" : "appId",
"appVersion" : "appVersion",
"branch" : "branch",
"revision" : "revision",
"type" : "User",
"version" : "version",
"arch" : "arch",
"os" : "os",
"osRelease" : "osRelease",
"osVersion" : "osVersion",
"hasApiSession" : false,
"hasEdgeRouterConnection" : false,
"lastOnlineAt" : null,
"syncId" : null,
"syncResourceId" : null,
"attributes" : [ ],
"jwt" : null,
"mfaEnabled" : false,
"online" : false,
"managedBy" : "Unmanaged",
"jwtExpiresAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/6b3c1a33-b40e-49f8-8006-b837ba216bf5",
"title" : "Test endpoint 02 updated"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c3c638a7-5ab4-4cf9-8a8c-1db5238af09a",
"profile" : "parent"
}
}
}
Delete Endpoint
DELETE /v2/endpoints/{id}
Authorization
This endpoint requires delete
action on the endpoint
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints/1510533d-a184-4003-9d3f-35b037d4417a' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ6N3FJbk56VExCYUo4ZFpHMWw1b3Z3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjZlOTgyZTAyLTU0Y2QtNDgxNC05NjNiLWU4NjdiNGFhM2Y4ZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA5NCwiZXhwIjoxNzI1MjYyNjk0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjgzM2YyZjI5LTk1ZTEtNGE0MS1hZTY0LTQ4OWFlMDg5MGYyYVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA5NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.i1p_OgHtDHKQF9_4NZ84zTLiGwHnBQ09iboVxfKdA7rk_cwaCTuG0deZd7o5i__x8w-ikhC-7t8I-tU__OG7KfKxBzO7yz_4k4448bIT1ttm6Sw1X7gdkRRadnIyDwcXENBpMCXOzvGOK5pZNX2yqKqO-k5pFCp39sdEGMh3w6S6eEM89ZXvcavoHdATexF-_hVmcrNwrsypmLevwOESc8n-k90Z7idccGU1Qi9sUkTO3PiWYl9hke0_3PxCJYUylsWMg7D1lyxD-93-d2CKsl3GenktWB6CdzpTP_-68ateLXlI1nA5yssjUyIcj9tSiI0TQO-Y2tLe_DA9NPBGOQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1357
{
"id" : "1510533d-a184-4003-9d3f-35b037d4417a",
"ownerIdentityId" : "c0d73759-34e7-4523-ba82-58fd89fd30e3",
"createdBy" : "c0d73759-34e7-4523-ba82-58fd89fd30e3",
"createdAt" : "2024-09-02T06:38:14.821467Z",
"updatedAt" : "2024-09-02T06:38:14.850788Z",
"deletedBy" : "6e982e02-54cd-4814-963b-e867b4aa3f8e",
"deletedAt" : "2024-09-02T06:38:14.850Z",
"networkId" : "448f15a2-c2b7-41c7-aa0e-1cec4ba54a75",
"zitiId" : "ziti-id-556",
"name" : "test endpoint",
"typeId" : "type",
"appId" : "appId",
"appVersion" : "appVersion",
"branch" : "branch",
"revision" : "revision",
"type" : "User",
"version" : "version",
"arch" : "arch",
"os" : "os",
"osRelease" : "osRelease",
"osVersion" : "osVersion",
"hasApiSession" : false,
"hasEdgeRouterConnection" : false,
"lastOnlineAt" : null,
"syncId" : null,
"syncResourceId" : null,
"attributes" : [ ],
"jwt" : null,
"mfaEnabled" : false,
"online" : false,
"managedBy" : "Unmanaged",
"jwtExpiresAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/1510533d-a184-4003-9d3f-35b037d4417a",
"title" : "test endpoint"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/448f15a2-c2b7-41c7-aa0e-1cec4ba54a75",
"profile" : "parent"
}
}
}
Edge Routers
Find Edge Routers
GET /v2/edge-routers
Authorization
This endpoint requires read
action on the edge-router
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
attributes |
Object |
true |
Deprecated.. |
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
hostId |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
zitiId |
String |
true |
|
domainName |
String |
true |
|
alternateDomainName |
String |
true |
|
name |
String |
true |
|
productVersion |
Object |
true |
|
networkId |
String |
true |
|
jwt |
String |
true |
|
linkListener |
Boolean |
true |
|
wssListener |
Boolean |
true |
|
tunnelerEnabled |
Boolean |
true |
|
noTraversal |
Boolean |
true |
|
online |
Boolean |
true |
|
verified |
Boolean |
true |
|
enabled |
Boolean |
true |
|
status |
String |
true |
Must be one of [NEW, PROVISIONING, PROVISIONED, ERROR, UPDATING, SUSPENDED, REPLACING, DELETING, DELETED]. |
softwareDeploymentStateId |
String |
true |
|
provider |
String |
true |
Deprecated.. Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER]. |
region |
String |
true |
Deprecated.. |
hostSize |
String |
true |
Deprecated.. |
attributes |
Array[String] |
true |
|
registration |
Object |
true |
|
registration.id |
String |
true |
|
registration.networkId |
String |
true |
|
registration.edgeRouterId |
String |
true |
|
registration.zitiId |
String |
true |
|
registration.registrationAttempts |
Integer |
true |
|
registration.expiresAt |
String |
true |
|
registration.issuedAt |
String |
true |
|
registration.usedAt |
String |
true |
|
registration.createdAt |
String |
true |
|
registration.createdBy |
String |
true |
|
registration.updatedAt |
String |
true |
|
registration.deletedAt |
String |
true |
|
registration.deletedBy |
String |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJsYnJlZkFyV3RjNkpuVWpGOHhyOGFRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjE1MDVhNDhlLTM1YjAtNDRlYy1hNGM5LThiNGRlZDU2NjcxMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTE5MSwiZXhwIjoxNzI1MjYyNzkxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImY2NjA0YWY5LTQ3MWMtNGZmOC04ZmFlLTdjOTQxOWUyOGIwMVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTE5MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.rJQ-L3P_qmay9Yq0srS_hVDPxyK0ExyF9qMGz5aVOUcQfcpXjW411PC0GJFbl4L7Yvyvaj64rSmrmtPQkGq07ycb2v8QvTRkuNm2HHrvTAWiXua9wNsgT-k8A8Y79T46fwkvSN2dER-2lutpoWz_hg7lTEqwJLi8KM7uZk7ahcXzKiTJelXCn1Q3X6ZBgD2g41gPQP5Zx_4hTW60VPnEJwEwz9Ta8DAQipBDazd00EiFT2GEyArCJa6J6EjMMTs1MjTivnc_Wb8utqu-fxpGkcvpxKFybM_TRklc-B527H1bf52P1TASpm5Kfyg5Qup7yLiWd3g8QKxQ9Vf7ZSaaUw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 272733
{
"_embedded" : {
"edgeRouterList" : [ {
"id" : "0389b154-6765-498e-bb09-ee52f7b82025",
"hostId" : "59a6ae3a-03d5-45b1-a15b-3e8e2e4c16a0",
"ownerIdentityId" : "25c3a08f-17e2-4505-ad8e-cd3659a374cc",
"createdBy" : "25c3a08f-17e2-4505-ad8e-cd3659a374cc",
"createdAt" : "2024-09-02T06:39:50.344380Z",
"updatedAt" : "2024-09-02T06:39:50.344380Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1905",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1904",
"productVersion" : "7.3.36",
"networkId" : "08232e99-6a2c-42d8-8a52-a96d3a6fd9c8",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/59a6ae3a-03d5-45b1-a15b-3e8e2e4c16a0"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0389b154-6765-498e-bb09-ee52f7b82025",
"title" : "er-test-1904"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/08232e99-6a2c-42d8-8a52-a96d3a6fd9c8",
"profile" : "parent"
}
}
}, {
"id" : "039abe2f-1cf5-4664-9069-623f89b2398e",
"hostId" : "776e0fe5-2573-4146-8cf5-541a15679967",
"ownerIdentityId" : "685a895e-4262-48af-b719-f9f1cb7afc7b",
"createdBy" : "685a895e-4262-48af-b719-f9f1cb7afc7b",
"createdAt" : "2024-09-02T06:39:45.509362Z",
"updatedAt" : "2024-09-02T06:39:45.509362Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1560",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-ziti-features-1559",
"productVersion" : "7.3.33",
"networkId" : "2d6e91d3-3dff-4ed9-91f7-802fedbbf39c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/776e0fe5-2573-4146-8cf5-541a15679967"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/039abe2f-1cf5-4664-9069-623f89b2398e",
"title" : "er-ziti-features-1559"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d6e91d3-3dff-4ed9-91f7-802fedbbf39c",
"profile" : "parent"
}
}
}, {
"id" : "0549aedd-6b7f-4a05-8dd6-48dbc52f0e16",
"hostId" : "21abae5c-e690-4e19-9574-a68387d8d937",
"ownerIdentityId" : "b6a7c0f6-944a-4947-9762-153bbd340f83",
"createdBy" : "b6a7c0f6-944a-4947-9762-153bbd340f83",
"createdAt" : "2024-09-02T06:39:48.592214Z",
"updatedAt" : "2024-09-02T06:39:48.599521Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1830",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1829",
"productVersion" : "7.3.36",
"networkId" : "196603f0-4421-46f8-b545-da71b85c01da",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "d931abf6-f0a9-4ca5-9bf0-a3b09be72776",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/21abae5c-e690-4e19-9574-a68387d8d937"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0549aedd-6b7f-4a05-8dd6-48dbc52f0e16",
"title" : "er-test-1829"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d931abf6-f0a9-4ca5-9bf0-a3b09be72776"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/196603f0-4421-46f8-b545-da71b85c01da",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d931abf6-f0a9-4ca5-9bf0-a3b09be72776",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "05577b21-515e-4bae-9f42-f0e995b91b1f",
"hostId" : "8fccac9f-9cad-49c0-8409-d47dacb58511",
"ownerIdentityId" : "c6d68ea2-08a0-494e-bfb8-1afe01a88719",
"createdBy" : "c6d68ea2-08a0-494e-bfb8-1afe01a88719",
"createdAt" : "2024-09-02T06:39:46.548806Z",
"updatedAt" : "2024-09-02T06:39:46.548806Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1736",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1735",
"productVersion" : "7.3.36",
"networkId" : "a68621a5-e1a0-4c9d-b315-dae77d72b35c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8fccac9f-9cad-49c0-8409-d47dacb58511"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/05577b21-515e-4bae-9f42-f0e995b91b1f",
"title" : "er-test-1735"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a68621a5-e1a0-4c9d-b315-dae77d72b35c",
"profile" : "parent"
}
}
}, {
"id" : "0635cc96-66c6-4125-b9e5-db9cf5f98ff5",
"hostId" : "e0ef3481-6195-4342-abab-9247cb3f186b",
"ownerIdentityId" : "201f751e-d4d5-46a3-b2e8-ac86b1076ddd",
"createdBy" : "201f751e-d4d5-46a3-b2e8-ac86b1076ddd",
"createdAt" : "2024-09-02T06:39:50.229540Z",
"updatedAt" : "2024-09-02T06:39:50.236228Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1849",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1848",
"productVersion" : "7.3.36",
"networkId" : "c5d06642-677d-4226-81da-f40b58875302",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "f00db69f-e0a7-4046-95e4-01577bebae4c",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e0ef3481-6195-4342-abab-9247cb3f186b"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0635cc96-66c6-4125-b9e5-db9cf5f98ff5",
"title" : "er-test-1848"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f00db69f-e0a7-4046-95e4-01577bebae4c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c5d06642-677d-4226-81da-f40b58875302",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f00db69f-e0a7-4046-95e4-01577bebae4c",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "06419f8a-28f9-4a8f-92fa-c3b5750e694f",
"hostId" : "e734dfa0-3acb-4751-bcbf-0ade0e611959",
"ownerIdentityId" : "3fc16e3b-d689-41a5-89a7-1d31b0c59aa8",
"createdBy" : "3fc16e3b-d689-41a5-89a7-1d31b0c59aa8",
"createdAt" : "2024-09-02T06:39:45.642144Z",
"updatedAt" : "2024-09-02T06:39:45.648289Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1569",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1568",
"productVersion" : "7.3.36",
"networkId" : "5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "13fbeba2-ecf3-48a5-b413-5cd01e4777f7",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e734dfa0-3acb-4751-bcbf-0ade0e611959"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/06419f8a-28f9-4a8f-92fa-c3b5750e694f",
"title" : "er-test-1568"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/13fbeba2-ecf3-48a5-b413-5cd01e4777f7"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/13fbeba2-ecf3-48a5-b413-5cd01e4777f7",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "09b8a5ef-c2c1-471f-8c93-9315db469e95",
"hostId" : "8e8bc6a2-22e1-40c7-af5f-ec4ecf1905d3",
"ownerIdentityId" : "8905b9bd-4917-4534-9aaa-f4ba5c6f08fd",
"createdBy" : "8905b9bd-4917-4534-9aaa-f4ba5c6f08fd",
"createdAt" : "2024-09-02T06:39:46.045716Z",
"updatedAt" : "2024-09-02T06:39:46.045716Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1613",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1612",
"productVersion" : "7.3.36",
"networkId" : "3bb6ff55-4978-4402-b059-7b27bd1fee55",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8e8bc6a2-22e1-40c7-af5f-ec4ecf1905d3"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/09b8a5ef-c2c1-471f-8c93-9315db469e95",
"title" : "er-test-1612"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3bb6ff55-4978-4402-b059-7b27bd1fee55",
"profile" : "parent"
}
}
}, {
"id" : "0c6989c8-6609-4d60-aa7f-812f8cb440d4",
"hostId" : "e7b9c9c0-843f-454e-8117-40b4c6f08ca4",
"ownerIdentityId" : "d0d6d508-fe9f-4860-adbc-5a46f4e2de92",
"createdBy" : "d0d6d508-fe9f-4860-adbc-5a46f4e2de92",
"createdAt" : "2024-09-02T06:39:46.921813Z",
"updatedAt" : "2024-09-02T06:39:46.926625Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1811",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1810",
"productVersion" : "7.3.36",
"networkId" : "8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "ddc166ff-9f1f-490b-952d-24a7dbac1bc0",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e7b9c9c0-843f-454e-8117-40b4c6f08ca4"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0c6989c8-6609-4d60-aa7f-812f8cb440d4",
"title" : "er-test-1810"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ddc166ff-9f1f-490b-952d-24a7dbac1bc0"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ddc166ff-9f1f-490b-952d-24a7dbac1bc0",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "0cb3f2ab-df5e-4907-83bb-64ab38626596",
"hostId" : "6c9c70af-7601-4929-a8ec-1f7f5858ffe2",
"ownerIdentityId" : "8e0a7425-8f11-4af3-9012-cebc23ad0aa7",
"createdBy" : "8e0a7425-8f11-4af3-9012-cebc23ad0aa7",
"createdAt" : "2024-09-02T06:39:44.484360Z",
"updatedAt" : "2024-09-02T06:39:44.545501Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1424",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1423",
"productVersion" : "7.3.36",
"networkId" : "622e19f9-86fb-43e8-8ef4-072879597dd6",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "4c66dd4b-fdce-456b-8c21-faf70382dd5a",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6c9c70af-7601-4929-a8ec-1f7f5858ffe2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0cb3f2ab-df5e-4907-83bb-64ab38626596",
"title" : "er-test-1423"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/4c66dd4b-fdce-456b-8c21-faf70382dd5a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/622e19f9-86fb-43e8-8ef4-072879597dd6",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/4c66dd4b-fdce-456b-8c21-faf70382dd5a",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "0d20f103-acaf-41a4-b348-7a2664802753",
"hostId" : "6aebabe3-c0f1-4aeb-b808-467ee4f8fbfb",
"ownerIdentityId" : "1bc78463-cc9e-47e4-a1d2-dda1fdf86990",
"createdBy" : "1bc78463-cc9e-47e4-a1d2-dda1fdf86990",
"createdAt" : "2024-09-02T06:39:45.413330Z",
"updatedAt" : "2024-09-02T06:39:45.413330Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1531",
"productVersion" : "7.3.36",
"networkId" : "92c4083f-b0c6-426d-8124-b0edd73b22de",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6aebabe3-c0f1-4aeb-b808-467ee4f8fbfb"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0d20f103-acaf-41a4-b348-7a2664802753",
"title" : "er-test-1531"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/92c4083f-b0c6-426d-8124-b0edd73b22de",
"profile" : "parent"
}
}
}, {
"id" : "10156e2a-21cb-4c3d-a1f7-30c9654ee3c8",
"hostId" : "7ad2d2df-2000-4a39-aacd-1e3632e7cdd2",
"ownerIdentityId" : "51ccf900-a8c2-404f-a899-382b84279140",
"createdBy" : "51ccf900-a8c2-404f-a899-382b84279140",
"createdAt" : "2024-09-02T06:39:46.477021Z",
"updatedAt" : "2024-09-02T06:39:46.477021Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1717",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1716",
"productVersion" : "7.3.36",
"networkId" : "ff74ea29-fc78-40c0-ba42-b331b148fefd",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7ad2d2df-2000-4a39-aacd-1e3632e7cdd2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/10156e2a-21cb-4c3d-a1f7-30c9654ee3c8",
"title" : "er-test-1716"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ff74ea29-fc78-40c0-ba42-b331b148fefd",
"profile" : "parent"
}
}
}, {
"id" : "1312fcf2-e005-4b50-80e8-8d8a494e5c24",
"hostId" : "b4bee721-0f2c-417a-a42d-2a0e207a7984",
"ownerIdentityId" : "1f79458c-2017-4083-a135-c2e864c3495a",
"createdBy" : "1f79458c-2017-4083-a135-c2e864c3495a",
"createdAt" : "2024-09-02T06:39:44.406300Z",
"updatedAt" : "2024-09-02T06:39:44.406300Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1414",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1413",
"productVersion" : "7.3.36",
"networkId" : "592b2d23-fb71-41b7-9d18-9e41e28a3d5d",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b4bee721-0f2c-417a-a42d-2a0e207a7984"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1312fcf2-e005-4b50-80e8-8d8a494e5c24",
"title" : "er-test-1413"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/592b2d23-fb71-41b7-9d18-9e41e28a3d5d",
"profile" : "parent"
}
}
}, {
"id" : "17096aa5-a796-4e30-be71-32dc09fa1f75",
"hostId" : "b1edb2ea-1270-4e9c-96d8-c6d23469cb16",
"ownerIdentityId" : "9398b735-ef08-45d7-93cb-d0caf4ce5eb7",
"createdBy" : "9398b735-ef08-45d7-93cb-d0caf4ce5eb7",
"createdAt" : "2024-09-02T06:39:50.691720Z",
"updatedAt" : "2024-09-02T06:39:50.696052Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2029",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2028",
"productVersion" : "7.3.36",
"networkId" : "69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "9fd50d6c-2389-452d-ac92-22f6adef1e5a",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b1edb2ea-1270-4e9c-96d8-c6d23469cb16"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/17096aa5-a796-4e30-be71-32dc09fa1f75",
"title" : "er-test-2028"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/9fd50d6c-2389-452d-ac92-22f6adef1e5a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/9fd50d6c-2389-452d-ac92-22f6adef1e5a",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "18f6a04e-342e-4fe4-a1db-9c7d92b40f22",
"hostId" : "15c68b9c-8fa4-42da-8df8-686be4eb993d",
"ownerIdentityId" : "fcdaca1f-8c81-4bc4-9f3d-f212ead6050d",
"createdBy" : "fcdaca1f-8c81-4bc4-9f3d-f212ead6050d",
"createdAt" : "2024-09-02T06:39:48.594945Z",
"updatedAt" : "2024-09-02T06:39:48.594945Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1836",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1835",
"productVersion" : "7.3.36",
"networkId" : "196603f0-4421-46f8-b545-da71b85c01da",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/15c68b9c-8fa4-42da-8df8-686be4eb993d"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/18f6a04e-342e-4fe4-a1db-9c7d92b40f22",
"title" : "er-test-1835"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/196603f0-4421-46f8-b545-da71b85c01da",
"profile" : "parent"
}
}
}, {
"id" : "19356e73-b139-437c-8731-9a4e1c84beaf",
"hostId" : "c81da570-9901-4dc7-8471-e9acc1ef954a",
"ownerIdentityId" : "ac7f591e-9117-4675-a59f-22fa1a18a5de",
"createdBy" : "ac7f591e-9117-4675-a59f-22fa1a18a5de",
"createdAt" : "2024-09-02T06:39:44.402734Z",
"updatedAt" : "2024-09-02T06:39:44.402734Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1411",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1410",
"productVersion" : "7.3.36",
"networkId" : "592b2d23-fb71-41b7-9d18-9e41e28a3d5d",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c81da570-9901-4dc7-8471-e9acc1ef954a"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/19356e73-b139-437c-8731-9a4e1c84beaf",
"title" : "er-test-1410"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/592b2d23-fb71-41b7-9d18-9e41e28a3d5d",
"profile" : "parent"
}
}
}, {
"id" : "1adc2a7a-a180-4e72-a39d-2f4d1a241194",
"hostId" : null,
"ownerIdentityId" : "585012df-5ad3-47a9-abd4-450d714adadf",
"createdBy" : "585012df-5ad3-47a9-abd4-450d714adadf",
"createdAt" : "2024-09-02T06:39:46.676956Z",
"updatedAt" : "2024-09-02T06:39:46.691868Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : null,
"domainName" : null,
"alternateDomainName" : null,
"name" : "edgerouter-1753",
"productVersion" : "7.3.69",
"networkId" : "228b5dc2-826e-4cc2-9313-81cf1f6bf7b5",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "ERROR",
"softwareDeploymentStateId" : "cc13b548-204b-4ed6-bd0f-74df1421c5d6",
"provider" : null,
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1adc2a7a-a180-4e72-a39d-2f4d1a241194",
"title" : "edgerouter-1753"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/cc13b548-204b-4ed6-bd0f-74df1421c5d6"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/228b5dc2-826e-4cc2-9313-81cf1f6bf7b5",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/cc13b548-204b-4ed6-bd0f-74df1421c5d6",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "1b72a466-119d-4368-8eae-ab254aeb1f86",
"hostId" : "fa3cf34f-684f-4cce-9b61-0c676785bf89",
"ownerIdentityId" : "2f12795e-750c-4956-8c11-b708f4e2d5dc",
"createdBy" : "2f12795e-750c-4956-8c11-b708f4e2d5dc",
"createdAt" : "2024-09-02T06:39:50.693749Z",
"updatedAt" : "2024-09-02T06:39:50.693749Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2035",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2034",
"productVersion" : "7.3.36",
"networkId" : "69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fa3cf34f-684f-4cce-9b61-0c676785bf89"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1b72a466-119d-4368-8eae-ab254aeb1f86",
"title" : "er-test-2034"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"profile" : "parent"
}
}
}, {
"id" : "1e83728f-b422-4e99-980c-bd42eae00790",
"hostId" : "04001215-683a-4e80-95b1-440d9bb3fc5a",
"ownerIdentityId" : "f5c1153e-a61a-49fa-b35e-532a2f37ffe4",
"createdBy" : "f5c1153e-a61a-49fa-b35e-532a2f37ffe4",
"createdAt" : "2024-09-02T06:39:45.955557Z",
"updatedAt" : "2024-09-02T06:39:45.997332Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1591",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1590",
"productVersion" : "7.3.36",
"networkId" : "74ea6b58-10d9-49bd-a825-ff4894f46aab",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "1b95aefc-a981-4830-9b39-2fc199eaaf37",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/04001215-683a-4e80-95b1-440d9bb3fc5a"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1e83728f-b422-4e99-980c-bd42eae00790",
"title" : "er-test-1590"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/1b95aefc-a981-4830-9b39-2fc199eaaf37"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/74ea6b58-10d9-49bd-a825-ff4894f46aab",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/1b95aefc-a981-4830-9b39-2fc199eaaf37",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "2026103a-72c9-443b-93b8-9ad8b6b38923",
"hostId" : "7d92cf8b-2942-4bd4-bd6c-d3f7865ed4fb",
"ownerIdentityId" : "3abcc8e8-2b76-4868-923d-6b5ae9d3cbfe",
"createdBy" : "3abcc8e8-2b76-4868-923d-6b5ae9d3cbfe",
"createdAt" : "2024-09-02T06:39:50.430868Z",
"updatedAt" : "2024-09-02T06:39:50.430868Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1943",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1942",
"productVersion" : "7.3.36",
"networkId" : "4bb5778b-f7e8-408c-a2b2-9227aecfa19a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7d92cf8b-2942-4bd4-bd6c-d3f7865ed4fb"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2026103a-72c9-443b-93b8-9ad8b6b38923",
"title" : "er-test-1942"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4bb5778b-f7e8-408c-a2b2-9227aecfa19a",
"profile" : "parent"
}
}
}, {
"id" : "2302f0be-1587-4213-81f7-f048e4340d45",
"hostId" : "ca525292-61cb-484a-8160-680e3da91c11",
"ownerIdentityId" : "80793123-8554-4d36-935f-491420bdc41d",
"createdBy" : "80793123-8554-4d36-935f-491420bdc41d",
"createdAt" : "2024-09-02T06:39:50.815655Z",
"updatedAt" : "2024-09-02T06:39:50.815655Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2084",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2083",
"productVersion" : "7.3.36",
"networkId" : "0d9b2af3-b956-4f8e-87a7-76cd20637535",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ca525292-61cb-484a-8160-680e3da91c11"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2302f0be-1587-4213-81f7-f048e4340d45",
"title" : "er-test-2083"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0d9b2af3-b956-4f8e-87a7-76cd20637535",
"profile" : "parent"
}
}
}, {
"id" : "233f95bb-d764-4489-9840-b67406c5ac42",
"hostId" : "8ad69571-ec99-43ca-b291-fdc6fec5246f",
"ownerIdentityId" : "e9abd7bb-74da-4317-bac5-a2316c8e249f",
"createdBy" : "e9abd7bb-74da-4317-bac5-a2316c8e249f",
"createdAt" : "2024-09-02T06:39:50.499847Z",
"updatedAt" : "2024-09-02T06:39:50.499847Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1975",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1974",
"productVersion" : "7.3.36",
"networkId" : "dc150338-5d2a-4ed9-aecc-d637e9cb6933",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8ad69571-ec99-43ca-b291-fdc6fec5246f"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/233f95bb-d764-4489-9840-b67406c5ac42",
"title" : "er-test-1974"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dc150338-5d2a-4ed9-aecc-d637e9cb6933",
"profile" : "parent"
}
}
}, {
"id" : "26683635-852e-4a72-b906-07da7b7fee6d",
"hostId" : "82e71f06-e38e-40b9-bdb0-9bb9ca0eb307",
"ownerIdentityId" : "87a02a92-3ebb-4bbe-a113-5aee935131c9",
"createdBy" : "87a02a92-3ebb-4bbe-a113-5aee935131c9",
"createdAt" : "2024-09-02T06:39:44.614547Z",
"updatedAt" : "2024-09-02T06:39:44.614547Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1452",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1451",
"productVersion" : "7.3.36",
"networkId" : "c34d9920-c65e-4fac-9c3a-669d3deb5071",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/82e71f06-e38e-40b9-bdb0-9bb9ca0eb307"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/26683635-852e-4a72-b906-07da7b7fee6d",
"title" : "er-test-1451"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c34d9920-c65e-4fac-9c3a-669d3deb5071",
"profile" : "parent"
}
}
}, {
"id" : "28fa1681-e574-4f15-8c89-7e584e6c674a",
"hostId" : "8ec4655e-6773-49cb-a60a-2286ec792949",
"ownerIdentityId" : "7100abe4-f3c0-47af-b517-8b02239e4103",
"createdBy" : "7100abe4-f3c0-47af-b517-8b02239e4103",
"createdAt" : "2024-09-02T06:39:50.959191Z",
"updatedAt" : "2024-09-02T06:39:50.959191Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2125",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2124",
"productVersion" : "7.3.36",
"networkId" : "8f335fb1-67b6-40de-8aef-3a4ea05eb33c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8ec4655e-6773-49cb-a60a-2286ec792949"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/28fa1681-e574-4f15-8c89-7e584e6c674a",
"title" : "er-test-2124"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8f335fb1-67b6-40de-8aef-3a4ea05eb33c",
"profile" : "parent"
}
}
}, {
"id" : "29165d23-f6c2-454c-8309-b3b3ad31a20f",
"hostId" : "fbe62e73-d6e8-498d-9f2a-29c3cd1aeb10",
"ownerIdentityId" : "52f4464b-0045-455d-9f97-9d987c6f17de",
"createdBy" : "52f4464b-0045-455d-9f97-9d987c6f17de",
"createdAt" : "2024-09-02T06:39:50.816638Z",
"updatedAt" : "2024-09-02T06:39:50.816638Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2087",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2086",
"productVersion" : "7.3.36",
"networkId" : "0d9b2af3-b956-4f8e-87a7-76cd20637535",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fbe62e73-d6e8-498d-9f2a-29c3cd1aeb10"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/29165d23-f6c2-454c-8309-b3b3ad31a20f",
"title" : "er-test-2086"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0d9b2af3-b956-4f8e-87a7-76cd20637535",
"profile" : "parent"
}
}
}, {
"id" : "2965e119-bc8e-44d3-86dc-3360cb70bf65",
"hostId" : "e9d64433-c828-4a7f-82b0-f72186fe89cb",
"ownerIdentityId" : "c6a5140b-cc64-446b-ac9b-90fab73cbaf9",
"createdBy" : "c6a5140b-cc64-446b-ac9b-90fab73cbaf9",
"createdAt" : "2024-09-02T06:39:50.625020Z",
"updatedAt" : "2024-09-02T06:39:50.625020Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2016",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2015",
"productVersion" : "7.3.36",
"networkId" : "854b3535-18c9-4cc7-b9a7-0122ff2ed0d9",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e9d64433-c828-4a7f-82b0-f72186fe89cb"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2965e119-bc8e-44d3-86dc-3360cb70bf65",
"title" : "er-test-2015"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/854b3535-18c9-4cc7-b9a7-0122ff2ed0d9",
"profile" : "parent"
}
}
}, {
"id" : "2b3c60b1-ef21-45ab-b6c8-db0382759280",
"hostId" : "d276b48b-9ddf-4952-b77c-486f0a657281",
"ownerIdentityId" : "24603d6f-c06e-4f1a-80f3-44c5ba26b357",
"createdBy" : "24603d6f-c06e-4f1a-80f3-44c5ba26b357",
"createdAt" : "2024-09-02T06:39:50.429050Z",
"updatedAt" : "2024-09-02T06:39:50.429050Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1937",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1936",
"productVersion" : "7.3.36",
"networkId" : "4bb5778b-f7e8-408c-a2b2-9227aecfa19a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d276b48b-9ddf-4952-b77c-486f0a657281"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2b3c60b1-ef21-45ab-b6c8-db0382759280",
"title" : "er-test-1936"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4bb5778b-f7e8-408c-a2b2-9227aecfa19a",
"profile" : "parent"
}
}
}, {
"id" : "2da96ae4-799e-472c-be97-32464e05322a",
"hostId" : "afa81698-576d-44f5-adff-bd02a4882d1b",
"ownerIdentityId" : "c58cc7fb-3e32-4764-86b9-15c10944cfbc",
"createdBy" : "c58cc7fb-3e32-4764-86b9-15c10944cfbc",
"createdAt" : "2024-09-02T06:39:50.296936Z",
"updatedAt" : "2024-09-02T06:39:50.296936Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1886",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1885",
"productVersion" : "7.3.36",
"networkId" : "1d3d9d7d-c538-419d-91c8-c9f8370d886f",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/afa81698-576d-44f5-adff-bd02a4882d1b"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2da96ae4-799e-472c-be97-32464e05322a",
"title" : "er-test-1885"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1d3d9d7d-c538-419d-91c8-c9f8370d886f",
"profile" : "parent"
}
}
}, {
"id" : "2f08ef17-de89-4ec5-a388-f4b6f7f5346c",
"hostId" : "2c577b5c-6700-40af-81bc-9a6ed549af32",
"ownerIdentityId" : "adbe19dc-c166-4d2a-be18-868d186bcd3c",
"createdBy" : "adbe19dc-c166-4d2a-be18-868d186bcd3c",
"createdAt" : "2024-09-02T06:39:46.925121Z",
"updatedAt" : "2024-09-02T06:39:46.925121Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1820",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1819",
"productVersion" : "7.3.36",
"networkId" : "8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2c577b5c-6700-40af-81bc-9a6ed549af32"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2f08ef17-de89-4ec5-a388-f4b6f7f5346c",
"title" : "er-test-1819"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"profile" : "parent"
}
}
}, {
"id" : "31531da1-473b-48cd-82d8-417750b06ede",
"hostId" : "c504efa9-d215-4c0a-8340-e2f31a3e9a80",
"ownerIdentityId" : "2b898ac2-d4db-4c75-8ca4-e08d6a15b51a",
"createdBy" : "2b898ac2-d4db-4c75-8ca4-e08d6a15b51a",
"createdAt" : "2024-09-02T06:39:44.883458Z",
"updatedAt" : "2024-09-02T06:39:44.883458Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1503",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1502",
"productVersion" : "7.3.36",
"networkId" : "14565985-5acd-4ae6-90f2-17bd4d68fdf7",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c504efa9-d215-4c0a-8340-e2f31a3e9a80"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/31531da1-473b-48cd-82d8-417750b06ede",
"title" : "er-test-1502"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/14565985-5acd-4ae6-90f2-17bd4d68fdf7",
"profile" : "parent"
}
}
}, {
"id" : "31ba5f54-5630-4f85-ae0f-2e0ba272411d",
"hostId" : "076285ff-f690-47d2-a008-0d6bfb2cecb6",
"ownerIdentityId" : "581f1312-de24-44b1-a71f-e6fa90641ee2",
"createdBy" : "581f1312-de24-44b1-a71f-e6fa90641ee2",
"createdAt" : "2024-09-02T06:39:46.097323Z",
"updatedAt" : "2024-09-02T06:39:46.097323Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1648",
"domainName" : null,
"alternateDomainName" : null,
"name" : "test-dns-zone-er-1",
"productVersion" : "7.3.37",
"networkId" : "7ba08e13-80dd-4cb9-89fa-27a9c0e314c8",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/076285ff-f690-47d2-a008-0d6bfb2cecb6"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/31ba5f54-5630-4f85-ae0f-2e0ba272411d",
"title" : "test-dns-zone-er-1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/7ba08e13-80dd-4cb9-89fa-27a9c0e314c8",
"profile" : "parent"
}
}
}, {
"id" : "3331d471-9b7a-4198-95ed-b38d52a407d1",
"hostId" : "95e18f63-2f69-45b4-aa2b-dae1ad573f8a",
"ownerIdentityId" : "e73e5dc4-1f8f-4347-bf18-ebee52315b36",
"createdBy" : "e73e5dc4-1f8f-4347-bf18-ebee52315b36",
"createdAt" : "2024-09-02T06:39:50.245304Z",
"updatedAt" : "2024-09-02T06:39:50.245304Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1868",
"domainName" : null,
"alternateDomainName" : null,
"name" : "test-dns-zone-er-1",
"productVersion" : "7.3.37",
"networkId" : "b5dc16c1-6e9b-4aa4-a299-c5ed38c266e1",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/95e18f63-2f69-45b4-aa2b-dae1ad573f8a"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3331d471-9b7a-4198-95ed-b38d52a407d1",
"title" : "test-dns-zone-er-1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b5dc16c1-6e9b-4aa4-a299-c5ed38c266e1",
"profile" : "parent"
}
}
}, {
"id" : "33dd16d0-1f4f-4e55-b8e3-77f14867c4a1",
"hostId" : "82695c07-0f6d-48e4-a21a-24912fddcb3d",
"ownerIdentityId" : "453c7a00-78f3-4184-831d-e02846c5fd22",
"createdBy" : "453c7a00-78f3-4184-831d-e02846c5fd22",
"createdAt" : "2024-09-02T06:39:50.878219Z",
"updatedAt" : "2024-09-02T06:39:50.878219Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2100",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2099",
"productVersion" : "7.3.36",
"networkId" : "9a452844-60ff-449d-a84e-ec5d3d29c17a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/82695c07-0f6d-48e4-a21a-24912fddcb3d"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/33dd16d0-1f4f-4e55-b8e3-77f14867c4a1",
"title" : "er-test-2099"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9a452844-60ff-449d-a84e-ec5d3d29c17a",
"profile" : "parent"
}
}
}, {
"id" : "3510cb6d-d9ed-489b-8ef1-94d9a6cd72c2",
"hostId" : "b0689d13-6fb8-4ea3-902d-fdc26228510d",
"ownerIdentityId" : "69f8272e-15f5-4aa4-9110-736a35272016",
"createdBy" : "69f8272e-15f5-4aa4-9110-736a35272016",
"createdAt" : "2024-09-02T06:39:50.295609Z",
"updatedAt" : "2024-09-02T06:39:50.295609Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1883",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1882",
"productVersion" : "7.3.36",
"networkId" : "1d3d9d7d-c538-419d-91c8-c9f8370d886f",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b0689d13-6fb8-4ea3-902d-fdc26228510d"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3510cb6d-d9ed-489b-8ef1-94d9a6cd72c2",
"title" : "er-test-1882"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1d3d9d7d-c538-419d-91c8-c9f8370d886f",
"profile" : "parent"
}
}
}, {
"id" : "358689af-96fc-4de4-89b4-bc1f65de1602",
"hostId" : "2dca2bef-0632-49d7-a71c-6dfef28e9b21",
"ownerIdentityId" : "bafa3ef8-91af-4f15-b20d-6053dafb8e70",
"createdBy" : "bafa3ef8-91af-4f15-b20d-6053dafb8e70",
"createdAt" : "2024-09-02T06:39:44.613037Z",
"updatedAt" : "2024-09-02T06:39:44.613037Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1449",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1448",
"productVersion" : "7.3.36",
"networkId" : "c34d9920-c65e-4fac-9c3a-669d3deb5071",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2dca2bef-0632-49d7-a71c-6dfef28e9b21"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/358689af-96fc-4de4-89b4-bc1f65de1602",
"title" : "er-test-1448"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c34d9920-c65e-4fac-9c3a-669d3deb5071",
"profile" : "parent"
}
}
}, {
"id" : "3715dcac-64e3-40d4-b8b9-0ab8a61c2b7e",
"hostId" : "b50d2d2f-ef78-4db3-b7ad-4a6aa7547aa9",
"ownerIdentityId" : "e59aabc3-7fae-4e7e-a9da-353743a17a71",
"createdBy" : "e59aabc3-7fae-4e7e-a9da-353743a17a71",
"createdAt" : "2024-09-02T06:39:45.494938Z",
"updatedAt" : "2024-09-02T06:39:45.501728Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1540",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1539",
"productVersion" : "7.3.36",
"networkId" : "9566f244-bb22-48f6-be84-a53b7b641ba1",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "b3193692-18ef-4c52-8de2-17b4e1bf978d",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b50d2d2f-ef78-4db3-b7ad-4a6aa7547aa9"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3715dcac-64e3-40d4-b8b9-0ab8a61c2b7e",
"title" : "er-test-1539"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b3193692-18ef-4c52-8de2-17b4e1bf978d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9566f244-bb22-48f6-be84-a53b7b641ba1",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b3193692-18ef-4c52-8de2-17b4e1bf978d",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "3a09773a-b5ec-4360-9e04-893c13af03c0",
"hostId" : "8d8f121b-1c30-4071-85ed-5caf569f1116",
"ownerIdentityId" : "7ad1ebc9-3e6e-4596-a1f2-c540bd89ad2c",
"createdBy" : "7ad1ebc9-3e6e-4596-a1f2-c540bd89ad2c",
"createdAt" : "2024-09-02T06:39:51.010777Z",
"updatedAt" : "2024-09-02T06:39:51.010777Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2141",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2140",
"productVersion" : "7.3.36",
"networkId" : "9dab7d4d-c8b3-432c-a266-481f12bdc10e",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8d8f121b-1c30-4071-85ed-5caf569f1116"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3a09773a-b5ec-4360-9e04-893c13af03c0",
"title" : "er-test-2140"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9dab7d4d-c8b3-432c-a266-481f12bdc10e",
"profile" : "parent"
}
}
}, {
"id" : "3acc4f42-d519-41a7-85a9-e5ed27349449",
"hostId" : "d7d20baf-d491-489c-b38b-e2f9eb0f5ba0",
"ownerIdentityId" : "64925786-da52-4fbc-ae82-5bbdd12b1e5d",
"createdBy" : "64925786-da52-4fbc-ae82-5bbdd12b1e5d",
"createdAt" : "2024-09-02T06:39:44.306993Z",
"updatedAt" : "2024-09-02T06:39:44.306993Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1389",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1388",
"productVersion" : "7.3.36",
"networkId" : "94b16fa0-6590-4656-b4f7-5bb7c9c58f29",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d7d20baf-d491-489c-b38b-e2f9eb0f5ba0"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3acc4f42-d519-41a7-85a9-e5ed27349449",
"title" : "er-test-1388"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/94b16fa0-6590-4656-b4f7-5bb7c9c58f29",
"profile" : "parent"
}
}
}, {
"id" : "3b528fc6-beb1-42ab-8d6f-b7208f12015f",
"hostId" : "49003250-55cd-4034-ad8b-59b2d22e238e",
"ownerIdentityId" : "f8f272ee-3072-41f9-bbbd-9099409c27f4",
"createdBy" : "f8f272ee-3072-41f9-bbbd-9099409c27f4",
"createdAt" : "2024-09-02T06:39:46.085925Z",
"updatedAt" : "2024-09-02T06:39:46.085925Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1635",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1634",
"productVersion" : "7.3.36",
"networkId" : "bf081c77-f10b-4934-b9b6-6c0763ba4e48",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/49003250-55cd-4034-ad8b-59b2d22e238e"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3b528fc6-beb1-42ab-8d6f-b7208f12015f",
"title" : "er-test-1634"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bf081c77-f10b-4934-b9b6-6c0763ba4e48",
"profile" : "parent"
}
}
}, {
"id" : "3c0dc01b-a34a-456a-b519-f061556268b9",
"hostId" : "d026404e-d049-49ed-a69c-f107535fc79c",
"ownerIdentityId" : "6597230b-f99a-4af7-8a13-d4220cfbc3ab",
"createdBy" : "6597230b-f99a-4af7-8a13-d4220cfbc3ab",
"createdAt" : "2024-09-02T06:39:50.500859Z",
"updatedAt" : "2024-09-02T06:39:50.500859Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1978",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1977",
"productVersion" : "7.3.36",
"networkId" : "dc150338-5d2a-4ed9-aecc-d637e9cb6933",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d026404e-d049-49ed-a69c-f107535fc79c"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3c0dc01b-a34a-456a-b519-f061556268b9",
"title" : "er-test-1977"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dc150338-5d2a-4ed9-aecc-d637e9cb6933",
"profile" : "parent"
}
}
}, {
"id" : "402ecf9a-d0b7-4f83-8bc7-fe6ac500aebd",
"hostId" : "6f2dca02-e6d7-4d6f-84b8-3c1fb90451df",
"ownerIdentityId" : "b0f86d2b-25f4-4ea1-a77f-9baac5ac1612",
"createdBy" : "b0f86d2b-25f4-4ea1-a77f-9baac5ac1612",
"createdAt" : "2024-09-02T06:39:46.044748Z",
"updatedAt" : "2024-09-02T06:39:46.049069Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1610",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1609",
"productVersion" : "7.3.36",
"networkId" : "3bb6ff55-4978-4402-b059-7b27bd1fee55",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "344e0723-1d27-4bc1-a528-d93a8d1ce1d6",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6f2dca02-e6d7-4d6f-84b8-3c1fb90451df"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/402ecf9a-d0b7-4f83-8bc7-fe6ac500aebd",
"title" : "er-test-1609"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/344e0723-1d27-4bc1-a528-d93a8d1ce1d6"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3bb6ff55-4978-4402-b059-7b27bd1fee55",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/344e0723-1d27-4bc1-a528-d93a8d1ce1d6",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "411ebc22-9f63-4c9a-996a-2295b53d1155",
"hostId" : "4993b272-6b19-4472-a411-d74dca494ca8",
"ownerIdentityId" : "ccc0558b-55fa-4483-a9b7-fd71f570951f",
"createdBy" : "ccc0558b-55fa-4483-a9b7-fd71f570951f",
"createdAt" : "2024-09-02T06:39:46.832126Z",
"updatedAt" : "2024-09-02T06:39:46.838629Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1782",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1781",
"productVersion" : "7.3.36",
"networkId" : "010e5673-5926-4fdc-b011-f84a62d707f5",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "b5cc87e3-0e4a-4811-a3de-22867ab8dd9c",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4993b272-6b19-4472-a411-d74dca494ca8"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/411ebc22-9f63-4c9a-996a-2295b53d1155",
"title" : "er-test-1781"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b5cc87e3-0e4a-4811-a3de-22867ab8dd9c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/010e5673-5926-4fdc-b011-f84a62d707f5",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b5cc87e3-0e4a-4811-a3de-22867ab8dd9c",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "48a16d39-1f44-48e5-9c67-47237ac2ea07",
"hostId" : "d319be4a-69df-4d7b-ac89-13e3be98fd8e",
"ownerIdentityId" : "5fae09c7-789c-45e3-964b-e1a42d2a74cd",
"createdBy" : "5fae09c7-789c-45e3-964b-e1a42d2a74cd",
"createdAt" : "2024-09-02T06:39:45.499668Z",
"updatedAt" : "2024-09-02T06:39:45.499668Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1549",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1548",
"productVersion" : "7.3.36",
"networkId" : "9566f244-bb22-48f6-be84-a53b7b641ba1",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d319be4a-69df-4d7b-ac89-13e3be98fd8e"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/48a16d39-1f44-48e5-9c67-47237ac2ea07",
"title" : "er-test-1548"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9566f244-bb22-48f6-be84-a53b7b641ba1",
"profile" : "parent"
}
}
}, {
"id" : "4addc33f-a81b-45df-9557-fe1cc0625eca",
"hostId" : "fe02cd72-80e8-44d2-8c16-d3459f3d2803",
"ownerIdentityId" : "6185bc7a-4237-4405-bbe4-33ee6c19a2bb",
"createdBy" : "6185bc7a-4237-4405-bbe4-33ee6c19a2bb",
"createdAt" : "2024-09-02T06:39:44.401398Z",
"updatedAt" : "2024-09-02T06:39:44.401398Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1408",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1407",
"productVersion" : "7.3.36",
"networkId" : "592b2d23-fb71-41b7-9d18-9e41e28a3d5d",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fe02cd72-80e8-44d2-8c16-d3459f3d2803"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4addc33f-a81b-45df-9557-fe1cc0625eca",
"title" : "er-test-1407"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/592b2d23-fb71-41b7-9d18-9e41e28a3d5d",
"profile" : "parent"
}
}
}, {
"id" : "4ade1461-ee91-4dac-8bf4-4a75deb21576",
"hostId" : "c3b36a6c-c50c-451c-a520-d13e8a026c81",
"ownerIdentityId" : "f0333553-b97a-4b86-852d-6800fa783a99",
"createdBy" : "f0333553-b97a-4b86-852d-6800fa783a99",
"createdAt" : "2024-09-02T06:39:50.813542Z",
"updatedAt" : "2024-09-02T06:39:50.835208Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2078",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2077",
"productVersion" : "7.3.36",
"networkId" : "0d9b2af3-b956-4f8e-87a7-76cd20637535",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "SUSPENDED",
"softwareDeploymentStateId" : "b666cc6d-0adc-4c72-8c9f-39aaea294137",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c3b36a6c-c50c-451c-a520-d13e8a026c81"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4ade1461-ee91-4dac-8bf4-4a75deb21576",
"title" : "er-test-2077"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b666cc6d-0adc-4c72-8c9f-39aaea294137"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0d9b2af3-b956-4f8e-87a7-76cd20637535",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b666cc6d-0adc-4c72-8c9f-39aaea294137",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "5171dd38-1a55-4d34-a604-a4fb5b12f8d4",
"hostId" : "a74931fd-6026-4963-b620-d73d5e303015",
"ownerIdentityId" : "3b12e40b-08f5-4d90-b29e-b8af7acad6b6",
"createdBy" : "3b12e40b-08f5-4d90-b29e-b8af7acad6b6",
"createdAt" : "2024-09-02T06:39:46.084893Z",
"updatedAt" : "2024-09-02T06:39:46.084893Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1632",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1631",
"productVersion" : "7.3.36",
"networkId" : "bf081c77-f10b-4934-b9b6-6c0763ba4e48",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a74931fd-6026-4963-b620-d73d5e303015"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5171dd38-1a55-4d34-a604-a4fb5b12f8d4",
"title" : "er-test-1631"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bf081c77-f10b-4934-b9b6-6c0763ba4e48",
"profile" : "parent"
}
}
}, {
"id" : "525bcd95-a170-4a68-9e89-d1f004dc3d18",
"hostId" : "130a7277-28a3-4dc4-a905-c4ca9340c7be",
"ownerIdentityId" : "01946a42-232a-45df-b671-7f9336beb7f7",
"createdBy" : "01946a42-232a-45df-b671-7f9336beb7f7",
"createdAt" : "2024-09-02T06:39:46.350604Z",
"updatedAt" : "2024-09-02T06:39:46.350604Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1698",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1697",
"productVersion" : "7.3.36",
"networkId" : "9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/130a7277-28a3-4dc4-a905-c4ca9340c7be"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/525bcd95-a170-4a68-9e89-d1f004dc3d18",
"title" : "er-test-1697"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"profile" : "parent"
}
}
}, {
"id" : "530407b7-a3be-4da5-9d60-9d2834e212d2",
"hostId" : "e3b85ef7-6aec-43d1-a057-2a04c07b5642",
"ownerIdentityId" : "d3efcd4a-28f9-48a1-bc40-6f2bb225baf5",
"createdBy" : "d3efcd4a-28f9-48a1-bc40-6f2bb225baf5",
"createdAt" : "2024-09-02T06:39:44.310860Z",
"updatedAt" : "2024-09-02T06:39:44.310860Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1395",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1394",
"productVersion" : "7.3.36",
"networkId" : "94b16fa0-6590-4656-b4f7-5bb7c9c58f29",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e3b85ef7-6aec-43d1-a057-2a04c07b5642"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/530407b7-a3be-4da5-9d60-9d2834e212d2",
"title" : "er-test-1394"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/94b16fa0-6590-4656-b4f7-5bb7c9c58f29",
"profile" : "parent"
}
}
}, {
"id" : "5504279e-d511-45ce-b77b-f3a75600e2fa",
"hostId" : "ee082d6a-a73e-46a1-8326-7a116444d692",
"ownerIdentityId" : "3b9e7a63-dfdf-4973-9d15-10f61ee037e6",
"createdBy" : "3b9e7a63-dfdf-4973-9d15-10f61ee037e6",
"createdAt" : "2024-09-02T06:39:44.610210Z",
"updatedAt" : "2024-09-02T06:39:44.616378Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1443",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1442",
"productVersion" : "7.3.36",
"networkId" : "c34d9920-c65e-4fac-9c3a-669d3deb5071",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "c8b6eff0-34be-412a-bda3-93511b7344e4",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ee082d6a-a73e-46a1-8326-7a116444d692"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5504279e-d511-45ce-b77b-f3a75600e2fa",
"title" : "er-test-1442"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/c8b6eff0-34be-412a-bda3-93511b7344e4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c34d9920-c65e-4fac-9c3a-669d3deb5071",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/c8b6eff0-34be-412a-bda3-93511b7344e4",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "58a99efc-5eef-410b-9fce-2a0f84093c2d",
"hostId" : "a1396097-b19b-415d-8b6d-5a7f1f3ea959",
"ownerIdentityId" : "6c472027-1efe-40a5-9717-8a0f14af2ff2",
"createdBy" : "6c472027-1efe-40a5-9717-8a0f14af2ff2",
"createdAt" : "2024-09-02T06:39:50.340601Z",
"updatedAt" : "2024-09-02T06:39:50.348231Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1896",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1895",
"productVersion" : "7.3.36",
"networkId" : "08232e99-6a2c-42d8-8a52-a96d3a6fd9c8",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONING",
"softwareDeploymentStateId" : "1a5b642f-c324-4493-94e3-3f9b9588ffda",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a1396097-b19b-415d-8b6d-5a7f1f3ea959"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/58a99efc-5eef-410b-9fce-2a0f84093c2d",
"title" : "er-test-1895"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/1a5b642f-c324-4493-94e3-3f9b9588ffda"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/08232e99-6a2c-42d8-8a52-a96d3a6fd9c8",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/1a5b642f-c324-4493-94e3-3f9b9588ffda",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "58cfac67-bb24-4886-a797-11c6114045b3",
"hostId" : "13db0757-75f8-4c17-99fd-a413eccba8ca",
"ownerIdentityId" : "6023357d-cc97-403d-b721-d2a547b35a09",
"createdBy" : "6023357d-cc97-403d-b721-d2a547b35a09",
"createdAt" : "2024-09-02T06:39:46.480919Z",
"updatedAt" : "2024-09-02T06:39:46.480919Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1723",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1722",
"productVersion" : "7.3.36",
"networkId" : "ff74ea29-fc78-40c0-ba42-b331b148fefd",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/13db0757-75f8-4c17-99fd-a413eccba8ca"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/58cfac67-bb24-4886-a797-11c6114045b3",
"title" : "er-test-1722"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ff74ea29-fc78-40c0-ba42-b331b148fefd",
"profile" : "parent"
}
}
}, {
"id" : "592b4df3-1e3d-4f5b-9a26-540bcd0d1242",
"hostId" : "0532ea8b-7e6f-42d0-92b7-bc86f26803b7",
"ownerIdentityId" : "44359a6e-dacf-46e8-a11b-1ee635303dc6",
"createdBy" : "44359a6e-dacf-46e8-a11b-1ee635303dc6",
"createdAt" : "2024-09-02T06:39:50.462851Z",
"updatedAt" : "2024-09-02T06:39:50.462851Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1959",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1958",
"productVersion" : "7.3.36",
"networkId" : "b36bb0c9-721c-46aa-8c23-38d91d60e9bd",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0532ea8b-7e6f-42d0-92b7-bc86f26803b7"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/592b4df3-1e3d-4f5b-9a26-540bcd0d1242",
"title" : "er-test-1958"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b36bb0c9-721c-46aa-8c23-38d91d60e9bd",
"profile" : "parent"
}
}
}, {
"id" : "5a4349af-d8cf-46f2-8963-e8d62fc6f93a",
"hostId" : "23816e2a-d208-4b62-8bd9-ff0f31b200d3",
"ownerIdentityId" : "fdb62295-7f28-4756-82c8-54a9de1ebf7d",
"createdBy" : "fdb62295-7f28-4756-82c8-54a9de1ebf7d",
"createdAt" : "2024-09-02T06:39:50.876990Z",
"updatedAt" : "2024-09-02T06:39:50.912350Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2097",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Updated name",
"productVersion" : "7.3.36",
"networkId" : "9a452844-60ff-449d-a84e-ec5d3d29c17a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : true,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "7d8988f5-22b7-429d-8924-98f32d21a54f",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/23816e2a-d208-4b62-8bd9-ff0f31b200d3"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5a4349af-d8cf-46f2-8963-e8d62fc6f93a",
"title" : "Updated name"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7d8988f5-22b7-429d-8924-98f32d21a54f"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9a452844-60ff-449d-a84e-ec5d3d29c17a",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7d8988f5-22b7-429d-8924-98f32d21a54f",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "5bdec95f-6d07-49ec-aeec-40630a827e03",
"hostId" : "73749b51-940d-4f1b-a194-384043845e71",
"ownerIdentityId" : "6a9a70a8-c7cd-4b62-ae23-dcc53310f992",
"createdBy" : "6a9a70a8-c7cd-4b62-ae23-dcc53310f992",
"createdAt" : "2024-09-02T06:39:50.958141Z",
"updatedAt" : "2024-09-02T06:39:50.958141Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2122",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2121",
"productVersion" : "7.3.36",
"networkId" : "8f335fb1-67b6-40de-8aef-3a4ea05eb33c",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/73749b51-940d-4f1b-a194-384043845e71"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5bdec95f-6d07-49ec-aeec-40630a827e03",
"title" : "er-test-2121"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8f335fb1-67b6-40de-8aef-3a4ea05eb33c",
"profile" : "parent"
}
}
}, {
"id" : "5c95cf7b-a017-442f-b739-216d56d71909",
"hostId" : "74a688cb-1fbf-4013-8fb5-d346e52c23c2",
"ownerIdentityId" : "62b7f421-4854-456f-9f76-bd9bfa915326",
"createdBy" : "62b7f421-4854-456f-9f76-bd9bfa915326",
"createdAt" : "2024-09-02T06:39:50.766450Z",
"updatedAt" : "2024-09-02T06:39:50.776430Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2067",
"domainName" : null,
"alternateDomainName" : null,
"name" : "edgerouter-2068",
"productVersion" : "7.3.69",
"networkId" : "a4bbd718-bbd0-420d-8d24-0f74ae6b547a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "CUSTOMER",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/74a688cb-1fbf-4013-8fb5-d346e52c23c2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5c95cf7b-a017-442f-b739-216d56d71909",
"title" : "edgerouter-2068"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a4bbd718-bbd0-420d-8d24-0f74ae6b547a",
"profile" : "parent"
}
}
}, {
"id" : "5e6e843b-6c21-4d8c-8267-d7346f004e03",
"hostId" : "b38662e1-9191-4a3d-b7cc-e45bdd0fcb41",
"ownerIdentityId" : "0dc60574-ab01-431c-b74a-69d28dd3b385",
"createdBy" : "0dc60574-ab01-431c-b74a-69d28dd3b385",
"createdAt" : "2024-09-02T06:39:50.956310Z",
"updatedAt" : "2024-09-02T06:39:50.982020Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2116",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2115",
"productVersion" : "7.3.36",
"networkId" : "8f335fb1-67b6-40de-8aef-3a4ea05eb33c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "ERROR",
"softwareDeploymentStateId" : "2a86e63f-1122-4c2d-a98d-93753543ddaf",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b38662e1-9191-4a3d-b7cc-e45bdd0fcb41"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5e6e843b-6c21-4d8c-8267-d7346f004e03",
"title" : "er-test-2115"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/2a86e63f-1122-4c2d-a98d-93753543ddaf"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8f335fb1-67b6-40de-8aef-3a4ea05eb33c",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/2a86e63f-1122-4c2d-a98d-93753543ddaf",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "5ee364cc-27be-4e38-bf3c-8b6ad962f913",
"hostId" : "8d0b37ea-91d6-47e5-93da-56cce737fa28",
"ownerIdentityId" : "27319bbf-8469-4ae5-b507-d59ac74e8d68",
"createdBy" : "27319bbf-8469-4ae5-b507-d59ac74e8d68",
"createdAt" : "2024-09-02T06:39:50.545982Z",
"updatedAt" : "2024-09-02T06:39:50.551110Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1991",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1990",
"productVersion" : "7.3.36",
"networkId" : "6061dc2b-5cc2-4553-8424-81188915bca2",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "a34c01a5-0b94-44dd-9c5e-99781d271c04",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8d0b37ea-91d6-47e5-93da-56cce737fa28"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5ee364cc-27be-4e38-bf3c-8b6ad962f913",
"title" : "er-test-1990"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/a34c01a5-0b94-44dd-9c5e-99781d271c04"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6061dc2b-5cc2-4553-8424-81188915bca2",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/a34c01a5-0b94-44dd-9c5e-99781d271c04",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "5fde6e1c-bffe-4eee-819f-3edd2e26cb89",
"hostId" : "b03a906b-9778-4d77-828c-c0358672b32c",
"ownerIdentityId" : "66113a16-95b3-477b-a45c-3f148c1671e2",
"createdBy" : "66113a16-95b3-477b-a45c-3f148c1671e2",
"createdAt" : "2024-09-02T06:39:50.343187Z",
"updatedAt" : "2024-09-02T06:39:50.343187Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1902",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1901",
"productVersion" : "7.3.36",
"networkId" : "08232e99-6a2c-42d8-8a52-a96d3a6fd9c8",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b03a906b-9778-4d77-828c-c0358672b32c"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5fde6e1c-bffe-4eee-819f-3edd2e26cb89",
"title" : "er-test-1901"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/08232e99-6a2c-42d8-8a52-a96d3a6fd9c8",
"profile" : "parent"
}
}
}, {
"id" : "606ce2ae-5027-45ff-9eb2-08db7e5d0842",
"hostId" : "ed8ade4a-1e1e-4ce7-a786-af1c374cf788",
"ownerIdentityId" : "0492e108-1e30-4a2f-837e-2d7e20377b45",
"createdBy" : "0492e108-1e30-4a2f-837e-2d7e20377b45",
"createdAt" : "2024-09-02T06:39:46.750913Z",
"updatedAt" : "2024-09-02T06:39:46.750913Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1772",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1771",
"productVersion" : "7.3.36",
"networkId" : "5686f5d7-d344-43bb-9840-b1c2a9aad58e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ed8ade4a-1e1e-4ce7-a786-af1c374cf788"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/606ce2ae-5027-45ff-9eb2-08db7e5d0842",
"title" : "er-test-1771"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5686f5d7-d344-43bb-9840-b1c2a9aad58e",
"profile" : "parent"
}
}
}, {
"id" : "6292778c-649e-4dd2-9cf7-5032a5ff104a",
"hostId" : "6e12a95e-3e4b-4d1f-8272-ff37eb8ab5cf",
"ownerIdentityId" : "6220695e-b3da-49d6-9f81-56f497070bda",
"createdBy" : "6220695e-b3da-49d6-9f81-56f497070bda",
"createdAt" : "2024-09-02T06:39:44.884843Z",
"updatedAt" : "2024-09-02T06:39:44.884843Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1506",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1505",
"productVersion" : "7.3.36",
"networkId" : "14565985-5acd-4ae6-90f2-17bd4d68fdf7",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6e12a95e-3e4b-4d1f-8272-ff37eb8ab5cf"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6292778c-649e-4dd2-9cf7-5032a5ff104a",
"title" : "er-test-1505"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/14565985-5acd-4ae6-90f2-17bd4d68fdf7",
"profile" : "parent"
}
}
}, {
"id" : "63cbc019-d3da-4976-becf-3620fce403c0",
"hostId" : "76f6b371-f6d9-4e7d-9b7d-548882bd091b",
"ownerIdentityId" : "9c42ae10-109c-4a8d-ac24-a15705e6a896",
"createdBy" : "9c42ae10-109c-4a8d-ac24-a15705e6a896",
"createdAt" : "2024-09-02T06:39:44.305343Z",
"updatedAt" : "2024-09-02T06:39:44.343364Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1386",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1385",
"productVersion" : "7.3.36",
"networkId" : "94b16fa0-6590-4656-b4f7-5bb7c9c58f29",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "fded1c27-7f17-48d6-9866-4bc9aab21db3",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/76f6b371-f6d9-4e7d-9b7d-548882bd091b"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/63cbc019-d3da-4976-becf-3620fce403c0",
"title" : "er-test-1385"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/fded1c27-7f17-48d6-9866-4bc9aab21db3"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/94b16fa0-6590-4656-b4f7-5bb7c9c58f29",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/fded1c27-7f17-48d6-9866-4bc9aab21db3",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "63f5f0cd-50fb-48ba-b133-88296cbf14a4",
"hostId" : "1d08618f-ced8-4a31-bcd6-9ac7b3c4099f",
"ownerIdentityId" : "84d8d551-2e4c-48f3-b77c-b8741e06f510",
"createdBy" : "84d8d551-2e4c-48f3-b77c-b8741e06f510",
"createdAt" : "2024-09-02T06:39:50.624067Z",
"updatedAt" : "2024-09-02T06:39:50.624067Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2013",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2012",
"productVersion" : "7.3.36",
"networkId" : "854b3535-18c9-4cc7-b9a7-0122ff2ed0d9",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/1d08618f-ced8-4a31-bcd6-9ac7b3c4099f"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/63f5f0cd-50fb-48ba-b133-88296cbf14a4",
"title" : "er-test-2012"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/854b3535-18c9-4cc7-b9a7-0122ff2ed0d9",
"profile" : "parent"
}
}
}, {
"id" : "6481f024-bf8f-48c9-9ae5-8c4e1a1e5680",
"hostId" : "63f5c68f-2e4d-4f22-856b-aaec530c5998",
"ownerIdentityId" : "eceef78b-e459-473a-8dc0-3373f0c995e8",
"createdBy" : "eceef78b-e459-473a-8dc0-3373f0c995e8",
"createdAt" : "2024-09-02T06:39:45.960217Z",
"updatedAt" : "2024-09-02T06:39:45.960217Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1600",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1599",
"productVersion" : "7.3.36",
"networkId" : "74ea6b58-10d9-49bd-a825-ff4894f46aab",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/63f5c68f-2e4d-4f22-856b-aaec530c5998"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6481f024-bf8f-48c9-9ae5-8c4e1a1e5680",
"title" : "er-test-1599"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/74ea6b58-10d9-49bd-a825-ff4894f46aab",
"profile" : "parent"
}
}
}, {
"id" : "6612c32d-38f7-4a16-9462-dd42971b471a",
"hostId" : "dd7dd2a1-3632-4e49-914b-b3a34b602d5c",
"ownerIdentityId" : "6167a0ef-f11a-48f8-9952-89fa0db55f9f",
"createdBy" : "6167a0ef-f11a-48f8-9952-89fa0db55f9f",
"createdAt" : "2024-09-02T06:39:46.479727Z",
"updatedAt" : "2024-09-02T06:39:46.479727Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1720",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1719",
"productVersion" : "7.3.36",
"networkId" : "ff74ea29-fc78-40c0-ba42-b331b148fefd",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/dd7dd2a1-3632-4e49-914b-b3a34b602d5c"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6612c32d-38f7-4a16-9462-dd42971b471a",
"title" : "er-test-1719"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ff74ea29-fc78-40c0-ba42-b331b148fefd",
"profile" : "parent"
}
}
}, {
"id" : "6691053a-2c2c-471d-8775-8710b4873772",
"hostId" : "668bb43b-b9e4-4344-96a9-27eacac7cc6a",
"ownerIdentityId" : "bfb0d566-78ca-4ea1-8d8c-eb8274b0bd79",
"createdBy" : "bfb0d566-78ca-4ea1-8d8c-eb8274b0bd79",
"createdAt" : "2024-09-02T06:39:50.501807Z",
"updatedAt" : "2024-09-02T06:39:50.501807Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1981",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1980",
"productVersion" : "7.3.36",
"networkId" : "dc150338-5d2a-4ed9-aecc-d637e9cb6933",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/668bb43b-b9e4-4344-96a9-27eacac7cc6a"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6691053a-2c2c-471d-8775-8710b4873772",
"title" : "er-test-1980"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dc150338-5d2a-4ed9-aecc-d637e9cb6933",
"profile" : "parent"
}
}
}, {
"id" : "684f2d67-bf02-4d83-99c8-70d136b6eea6",
"hostId" : "60317e85-ba08-4735-8260-951ea2c17a2b",
"ownerIdentityId" : "332d2cbf-a982-434d-9b90-66fb004f9ff7",
"createdBy" : "332d2cbf-a982-434d-9b90-66fb004f9ff7",
"createdAt" : "2024-09-02T06:39:44.155605Z",
"updatedAt" : "2024-09-02T06:39:44.189467Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "zXh61RuR017zqmyDP60Av",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Test edge router 1725259184",
"productVersion" : "7.3.36",
"networkId" : "5fb41378-a560-454c-a43b-564bdc86898c",
"jwt" : null,
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : true,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "56583665-05ff-499d-99e1-5fda02889134",
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/60317e85-ba08-4735-8260-951ea2c17a2b"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/684f2d67-bf02-4d83-99c8-70d136b6eea6",
"title" : "Test edge router 1725259184"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/56583665-05ff-499d-99e1-5fda02889134"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5fb41378-a560-454c-a43b-564bdc86898c",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/56583665-05ff-499d-99e1-5fda02889134",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "69e2c6d8-3dc2-41fa-815a-ad3ff10d5981",
"hostId" : "c52c4224-ef9e-4cd3-a1e8-ea4c57dd78c9",
"ownerIdentityId" : "415bcb16-8374-4a32-bee5-562015b94d62",
"createdBy" : "415bcb16-8374-4a32-bee5-562015b94d62",
"createdAt" : "2024-09-02T06:39:45.643410Z",
"updatedAt" : "2024-09-02T06:39:45.643410Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1572",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1571",
"productVersion" : "7.3.36",
"networkId" : "5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c52c4224-ef9e-4cd3-a1e8-ea4c57dd78c9"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/69e2c6d8-3dc2-41fa-815a-ad3ff10d5981",
"title" : "er-test-1571"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"profile" : "parent"
}
}
}, {
"id" : "6c2639d0-b633-4df7-a884-3d409f5def47",
"hostId" : "f60e673d-ec5e-4d18-a7cc-ff7f0bfbc237",
"ownerIdentityId" : "400eea6c-fc4f-445f-88d1-8eba2bb9c507",
"createdBy" : "400eea6c-fc4f-445f-88d1-8eba2bb9c507",
"createdAt" : "2024-09-02T06:39:46.547075Z",
"updatedAt" : "2024-09-02T06:39:46.553379Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1733",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1732",
"productVersion" : "7.3.36",
"networkId" : "a68621a5-e1a0-4c9d-b315-dae77d72b35c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "ea926130-c6c3-417d-9a1f-4debe278a659",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f60e673d-ec5e-4d18-a7cc-ff7f0bfbc237"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6c2639d0-b633-4df7-a884-3d409f5def47",
"title" : "er-test-1732"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ea926130-c6c3-417d-9a1f-4debe278a659"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a68621a5-e1a0-4c9d-b315-dae77d72b35c",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ea926130-c6c3-417d-9a1f-4debe278a659",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "6ddcb764-3e92-40c6-8175-218ebf3717b0",
"hostId" : "f9ff513e-3780-48c4-bc9c-8d89c41e578c",
"ownerIdentityId" : "ae80fb59-b2f7-421c-9d77-3d3f2025bed8",
"createdBy" : "ae80fb59-b2f7-421c-9d77-3d3f2025bed8",
"createdAt" : "2024-09-02T06:39:44.309241Z",
"updatedAt" : "2024-09-02T06:39:44.309241Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1392",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1391",
"productVersion" : "7.3.36",
"networkId" : "94b16fa0-6590-4656-b4f7-5bb7c9c58f29",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f9ff513e-3780-48c4-bc9c-8d89c41e578c"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6ddcb764-3e92-40c6-8175-218ebf3717b0",
"title" : "er-test-1391"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/94b16fa0-6590-4656-b4f7-5bb7c9c58f29",
"profile" : "parent"
}
}
}, {
"id" : "6ed046fc-c079-438c-b87e-668e39f7744e",
"hostId" : "e1dd1f5f-77ab-4078-b08c-9d7a51e020e1",
"ownerIdentityId" : "fddc93b9-5ccb-4303-a29d-f0922da4eede",
"createdBy" : "fddc93b9-5ccb-4303-a29d-f0922da4eede",
"createdAt" : "2024-09-02T06:39:46.290934Z",
"updatedAt" : "2024-09-02T06:39:46.290934Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1682",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1681",
"productVersion" : "7.3.36",
"networkId" : "b726ebb8-41b8-4a4b-ab1b-43e6732c582e",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e1dd1f5f-77ab-4078-b08c-9d7a51e020e1"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6ed046fc-c079-438c-b87e-668e39f7744e",
"title" : "er-test-1681"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b726ebb8-41b8-4a4b-ab1b-43e6732c582e",
"profile" : "parent"
}
}
}, {
"id" : "713cdcba-42d5-42d3-a440-d511befb40bf",
"hostId" : "c0d06eae-814c-4c52-98cc-7510cf5cce87",
"ownerIdentityId" : "74419a8e-028e-4002-a4fd-8edd1cd07ceb",
"createdBy" : "74419a8e-028e-4002-a4fd-8edd1cd07ceb",
"createdAt" : "2024-09-02T06:39:46.749586Z",
"updatedAt" : "2024-09-02T06:39:46.749586Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1769",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1768",
"productVersion" : "7.3.36",
"networkId" : "5686f5d7-d344-43bb-9840-b1c2a9aad58e",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c0d06eae-814c-4c52-98cc-7510cf5cce87"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/713cdcba-42d5-42d3-a440-d511befb40bf",
"title" : "er-test-1768"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5686f5d7-d344-43bb-9840-b1c2a9aad58e",
"profile" : "parent"
}
}
}, {
"id" : "742b086b-2c6f-4498-935c-9e68c965e0b4",
"hostId" : "4f29da71-11a8-4e24-a551-586137791965",
"ownerIdentityId" : "b8ee1f73-8df6-4ecc-836b-790db329988c",
"createdBy" : "b8ee1f73-8df6-4ecc-836b-790db329988c",
"createdAt" : "2024-09-02T06:39:46.288141Z",
"updatedAt" : "2024-09-02T06:39:46.293653Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1676",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1675",
"productVersion" : "7.3.36",
"networkId" : "b726ebb8-41b8-4a4b-ab1b-43e6732c582e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "ab017063-e59f-4201-b2f7-00be4cbb7277",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4f29da71-11a8-4e24-a551-586137791965"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/742b086b-2c6f-4498-935c-9e68c965e0b4",
"title" : "er-test-1675"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ab017063-e59f-4201-b2f7-00be4cbb7277"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b726ebb8-41b8-4a4b-ab1b-43e6732c582e",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ab017063-e59f-4201-b2f7-00be4cbb7277",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "7720ad72-986a-434a-86dd-8afb077800b3",
"hostId" : "b5f33480-384d-4a1e-8080-07035b8acd99",
"ownerIdentityId" : "b034e393-b6b8-474f-b403-1be86764e9f5",
"createdBy" : "b034e393-b6b8-474f-b403-1be86764e9f5",
"createdAt" : "2024-09-02T06:39:44.059172Z",
"updatedAt" : "2024-09-02T06:39:44.059172Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1370",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1369",
"productVersion" : "7.3.36",
"networkId" : "5fb41378-a560-454c-a43b-564bdc86898c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b5f33480-384d-4a1e-8080-07035b8acd99"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7720ad72-986a-434a-86dd-8afb077800b3",
"title" : "er-test-1369"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5fb41378-a560-454c-a43b-564bdc86898c",
"profile" : "parent"
}
}
}, {
"id" : "77a9e6b2-bee3-4e32-8c07-515de6f7bc05",
"hostId" : "13ad5e54-03af-444c-9d47-815ddb3fc56f",
"ownerIdentityId" : "c3cb1dd2-67a2-4708-b4d2-499616d6cfa1",
"createdBy" : "c3cb1dd2-67a2-4708-b4d2-499616d6cfa1",
"createdAt" : "2024-09-02T06:39:44.687214Z",
"updatedAt" : "2024-09-02T06:39:44.687214Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1471",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1470",
"productVersion" : "7.3.36",
"networkId" : "03f43471-4f06-4be6-8fd2-8faf5f1b2190",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/13ad5e54-03af-444c-9d47-815ddb3fc56f"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/77a9e6b2-bee3-4e32-8c07-515de6f7bc05",
"title" : "er-test-1470"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/03f43471-4f06-4be6-8fd2-8faf5f1b2190",
"profile" : "parent"
}
}
}, {
"id" : "783efdd5-176c-4a5a-aa1a-2cdc82cc81e7",
"hostId" : "2338f917-72f6-462b-94f8-d16d2d8426b2",
"ownerIdentityId" : "f31aa05b-07e8-4161-8ca0-866d847379bd",
"createdBy" : "f31aa05b-07e8-4161-8ca0-866d847379bd",
"createdAt" : "2024-09-02T06:39:50.341957Z",
"updatedAt" : "2024-09-02T06:39:50.341957Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1899",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1898",
"productVersion" : "7.3.36",
"networkId" : "08232e99-6a2c-42d8-8a52-a96d3a6fd9c8",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2338f917-72f6-462b-94f8-d16d2d8426b2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/783efdd5-176c-4a5a-aa1a-2cdc82cc81e7",
"title" : "er-test-1898"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/08232e99-6a2c-42d8-8a52-a96d3a6fd9c8",
"profile" : "parent"
}
}
}, {
"id" : "797e65c7-4ffe-4718-a948-bbf1b0720360",
"hostId" : "a22150ff-cce0-4ea3-8fc3-fc90af73b230",
"ownerIdentityId" : "c8d377ac-58ad-4b3c-8471-16321c8af5ae",
"createdBy" : "c8d377ac-58ad-4b3c-8471-16321c8af5ae",
"createdAt" : "2024-09-02T06:39:46.083873Z",
"updatedAt" : "2024-09-02T06:39:46.088510Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1629",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1628",
"productVersion" : "7.3.36",
"networkId" : "bf081c77-f10b-4934-b9b6-6c0763ba4e48",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "ab8a24ac-e527-480d-9ad4-d4d58d4c7648",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a22150ff-cce0-4ea3-8fc3-fc90af73b230"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/797e65c7-4ffe-4718-a948-bbf1b0720360",
"title" : "er-test-1628"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ab8a24ac-e527-480d-9ad4-d4d58d4c7648"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bf081c77-f10b-4934-b9b6-6c0763ba4e48",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ab8a24ac-e527-480d-9ad4-d4d58d4c7648",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "7a5aee8f-9e08-4ae1-8d97-f24c186b55e9",
"hostId" : "0ae32237-5f57-459e-94a4-e77aa4aff379",
"ownerIdentityId" : "b38d0160-a365-483a-94cb-c34d30f37f7a",
"createdBy" : "b38d0160-a365-483a-94cb-c34d30f37f7a",
"createdAt" : "2024-09-02T06:39:45.496361Z",
"updatedAt" : "2024-09-02T06:39:45.496361Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1543",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1542",
"productVersion" : "7.3.36",
"networkId" : "9566f244-bb22-48f6-be84-a53b7b641ba1",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0ae32237-5f57-459e-94a4-e77aa4aff379"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7a5aee8f-9e08-4ae1-8d97-f24c186b55e9",
"title" : "er-test-1542"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9566f244-bb22-48f6-be84-a53b7b641ba1",
"profile" : "parent"
}
}
}, {
"id" : "7bdaa3f0-f14a-4eb8-8377-b2d083dfe8a6",
"hostId" : "3634cd40-882f-4116-b017-4f20c89d1b8e",
"ownerIdentityId" : "d57b2d00-15a4-462f-a253-c987450ae3f8",
"createdBy" : "d57b2d00-15a4-462f-a253-c987450ae3f8",
"createdAt" : "2024-09-02T06:39:44.886331Z",
"updatedAt" : "2024-09-02T06:39:44.886331Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1509",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1508",
"productVersion" : "7.3.36",
"networkId" : "14565985-5acd-4ae6-90f2-17bd4d68fdf7",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3634cd40-882f-4116-b017-4f20c89d1b8e"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7bdaa3f0-f14a-4eb8-8377-b2d083dfe8a6",
"title" : "er-test-1508"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/14565985-5acd-4ae6-90f2-17bd4d68fdf7",
"profile" : "parent"
}
}
}, {
"id" : "7c81212b-e7dd-4dd8-ba40-f20f53303afd",
"hostId" : "acf1a277-321a-4a93-a885-b9b10364f3eb",
"ownerIdentityId" : "18431f50-9f88-4551-b632-5ec42653a561",
"createdBy" : "18431f50-9f88-4551-b632-5ec42653a561",
"createdAt" : "2024-09-02T06:39:50.460661Z",
"updatedAt" : "2024-09-02T06:39:50.465149Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1953",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1952",
"productVersion" : "7.3.36",
"networkId" : "b36bb0c9-721c-46aa-8c23-38d91d60e9bd",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "4585b1f5-4079-451f-901d-1d979ceebfad",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/acf1a277-321a-4a93-a885-b9b10364f3eb"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7c81212b-e7dd-4dd8-ba40-f20f53303afd",
"title" : "er-test-1952"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/4585b1f5-4079-451f-901d-1d979ceebfad"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b36bb0c9-721c-46aa-8c23-38d91d60e9bd",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/4585b1f5-4079-451f-901d-1d979ceebfad",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "7d8c785f-32b9-41ae-b347-48ba5e48bd85",
"hostId" : "5ed36978-adfe-48d7-8f8c-644962094aae",
"ownerIdentityId" : "1c20bef8-6d49-447a-8e77-8beee0587125",
"createdBy" : "1c20bef8-6d49-447a-8e77-8beee0587125",
"createdAt" : "2024-09-02T06:39:45.386036Z",
"updatedAt" : "2024-09-02T06:39:45.386036Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1528",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1527",
"productVersion" : "7.3.36",
"networkId" : "92c4083f-b0c6-426d-8124-b0edd73b22de",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5ed36978-adfe-48d7-8f8c-644962094aae"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7d8c785f-32b9-41ae-b347-48ba5e48bd85",
"title" : "er-test-1527"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/92c4083f-b0c6-426d-8124-b0edd73b22de",
"profile" : "parent"
}
}
}, {
"id" : "80b25491-0501-4c2a-80dc-85e20e7520b8",
"hostId" : "5c7748ef-90d9-40ed-9dec-b7415367fad6",
"ownerIdentityId" : "d45eacdc-95c1-4bd4-9836-2dd34dffabc9",
"createdBy" : "d45eacdc-95c1-4bd4-9836-2dd34dffabc9",
"createdAt" : "2024-09-02T06:39:51.009439Z",
"updatedAt" : "2024-09-02T06:39:51.009439Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2138",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2137",
"productVersion" : "7.3.36",
"networkId" : "9dab7d4d-c8b3-432c-a266-481f12bdc10e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5c7748ef-90d9-40ed-9dec-b7415367fad6"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/80b25491-0501-4c2a-80dc-85e20e7520b8",
"title" : "er-test-2137"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9dab7d4d-c8b3-432c-a266-481f12bdc10e",
"profile" : "parent"
}
}
}, {
"id" : "81969718-3d3b-4697-89c0-d010aab05aaf",
"hostId" : "f9df1115-8050-41bf-b808-f8efe48e3093",
"ownerIdentityId" : "ab8d0ea7-3aad-4f4a-a7c3-83a94e3e001c",
"createdBy" : "ab8d0ea7-3aad-4f4a-a7c3-83a94e3e001c",
"createdAt" : "2024-09-02T06:39:50.626020Z",
"updatedAt" : "2024-09-02T06:39:50.626020Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2019",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2018",
"productVersion" : "7.3.36",
"networkId" : "854b3535-18c9-4cc7-b9a7-0122ff2ed0d9",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f9df1115-8050-41bf-b808-f8efe48e3093"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/81969718-3d3b-4697-89c0-d010aab05aaf",
"title" : "er-test-2018"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/854b3535-18c9-4cc7-b9a7-0122ff2ed0d9",
"profile" : "parent"
}
}
}, {
"id" : "81e3ce18-d26c-450f-aa71-c53e404c1f66",
"hostId" : "f1c40bd6-b2a4-45e2-98d2-7028b8922b33",
"ownerIdentityId" : "aeaf6291-c3db-427b-9df7-031684c575cb",
"createdBy" : "aeaf6291-c3db-427b-9df7-031684c575cb",
"createdAt" : "2024-09-02T06:39:51.008087Z",
"updatedAt" : "2024-09-02T06:39:51.013143Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2135",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2134",
"productVersion" : "7.3.36",
"networkId" : "9dab7d4d-c8b3-432c-a266-481f12bdc10e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "ce30435b-5308-4f06-8812-6daba29f127c",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f1c40bd6-b2a4-45e2-98d2-7028b8922b33"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/81e3ce18-d26c-450f-aa71-c53e404c1f66",
"title" : "er-test-2134"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ce30435b-5308-4f06-8812-6daba29f127c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9dab7d4d-c8b3-432c-a266-481f12bdc10e",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ce30435b-5308-4f06-8812-6daba29f127c",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "83af8126-090a-4121-8ac5-1936f656e7ba",
"hostId" : "7ffdee72-1d3e-49ae-a221-9a1561953ca1",
"ownerIdentityId" : "6c9a8635-caab-4c6a-838c-bb7d472a0ed0",
"createdBy" : "6c9a8635-caab-4c6a-838c-bb7d472a0ed0",
"createdAt" : "2024-09-02T06:39:50.382788Z",
"updatedAt" : "2024-09-02T06:39:50.382788Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1921",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1920",
"productVersion" : "7.3.36",
"networkId" : "a0813f49-88d8-4554-961d-90d60e1e6153",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7ffdee72-1d3e-49ae-a221-9a1561953ca1"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/83af8126-090a-4121-8ac5-1936f656e7ba",
"title" : "er-test-1920"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a0813f49-88d8-4554-961d-90d60e1e6153",
"profile" : "parent"
}
}
}, {
"id" : "848dcc74-1950-4d09-ad9b-0d9768ad79f0",
"hostId" : "9516e772-6e5f-4fa9-a612-3ca88c313703",
"ownerIdentityId" : "24cdf28b-476c-4e70-acb2-d95583f44deb",
"createdBy" : "24cdf28b-476c-4e70-acb2-d95583f44deb",
"createdAt" : "2024-09-02T06:39:50.757040Z",
"updatedAt" : "2024-09-02T06:39:50.761460Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2048",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2047",
"productVersion" : "7.3.36",
"networkId" : "88e1f54f-0062-4afb-89b1-00a9d0c5b078",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "d11a4f5f-a3b7-4bdf-b089-04805ef40cdd",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9516e772-6e5f-4fa9-a612-3ca88c313703"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/848dcc74-1950-4d09-ad9b-0d9768ad79f0",
"title" : "er-test-2047"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d11a4f5f-a3b7-4bdf-b089-04805ef40cdd"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/88e1f54f-0062-4afb-89b1-00a9d0c5b078",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d11a4f5f-a3b7-4bdf-b089-04805ef40cdd",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "84916449-5f3a-498e-9d5d-ab8e619ada83",
"hostId" : "d9d365d5-6df4-482b-b59f-b41d0a7fce4b",
"ownerIdentityId" : "68c0841a-13a1-404c-8257-5b8b64ec0dbe",
"createdBy" : "68c0841a-13a1-404c-8257-5b8b64ec0dbe",
"createdAt" : "2024-09-02T06:39:50.498947Z",
"updatedAt" : "2024-09-02T06:39:50.503142Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1972",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1971",
"productVersion" : "7.3.36",
"networkId" : "dc150338-5d2a-4ed9-aecc-d637e9cb6933",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "f294ce4c-99e7-46ab-8483-8fa53beb50a3",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d9d365d5-6df4-482b-b59f-b41d0a7fce4b"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/84916449-5f3a-498e-9d5d-ab8e619ada83",
"title" : "er-test-1971"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f294ce4c-99e7-46ab-8483-8fa53beb50a3"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dc150338-5d2a-4ed9-aecc-d637e9cb6933",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f294ce4c-99e7-46ab-8483-8fa53beb50a3",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "84d92911-cd53-4fda-9fa2-81d65bc09015",
"hostId" : "305a8501-90ec-407e-ba92-ae0033dcfa5f",
"ownerIdentityId" : "45028870-b293-484b-be5a-2b146e27ad2f",
"createdBy" : "45028870-b293-484b-be5a-2b146e27ad2f",
"createdAt" : "2024-09-02T06:39:46.960402Z",
"updatedAt" : "2024-09-02T06:39:47.022045Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ONbm6b5KOkfX92aIiMQfC",
"domainName" : "84d92911-cd53-4fda-9fa2-81d65bc09015.fake.netfoundry.io",
"alternateDomainName" : null,
"name" : "Test edge router 1725259186",
"productVersion" : "7.3.36",
"networkId" : "8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"jwt" : "abcJWT",
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "ERROR",
"softwareDeploymentStateId" : "f3128861-a88b-4390-b7cd-6f015c8b6531",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "medium",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/305a8501-90ec-407e-ba92-ae0033dcfa5f"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/84d92911-cd53-4fda-9fa2-81d65bc09015",
"title" : "Test edge router 1725259186"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f3128861-a88b-4390-b7cd-6f015c8b6531"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f3128861-a88b-4390-b7cd-6f015c8b6531",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "851cd55a-be42-44af-9dfc-a156ff1b0c8f",
"hostId" : "5f91999a-d827-43a5-a9e4-30dcc19b656b",
"ownerIdentityId" : "f19d54d0-f7f0-4d11-84bf-4d6dd05d927a",
"createdBy" : "f19d54d0-f7f0-4d11-84bf-4d6dd05d927a",
"createdAt" : "2024-09-02T06:39:46.352741Z",
"updatedAt" : "2024-09-02T06:39:46.352741Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1704",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1703",
"productVersion" : "7.3.36",
"networkId" : "9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5f91999a-d827-43a5-a9e4-30dcc19b656b"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/851cd55a-be42-44af-9dfc-a156ff1b0c8f",
"title" : "er-test-1703"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"profile" : "parent"
}
}
}, {
"id" : "857f0ec9-a3d1-4770-bc02-8373bfc6e9d2",
"hostId" : "80ca5d9c-2f92-4144-9f61-8d1f22e30869",
"ownerIdentityId" : "76789d30-82ce-4157-9c2b-7a4d71446066",
"createdBy" : "76789d30-82ce-4157-9c2b-7a4d71446066",
"createdAt" : "2024-09-02T06:39:46.836613Z",
"updatedAt" : "2024-09-02T06:39:46.836613Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1791",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1790",
"productVersion" : "7.3.36",
"networkId" : "010e5673-5926-4fdc-b011-f84a62d707f5",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/80ca5d9c-2f92-4144-9f61-8d1f22e30869"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/857f0ec9-a3d1-4770-bc02-8373bfc6e9d2",
"title" : "er-test-1790"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/010e5673-5926-4fdc-b011-f84a62d707f5",
"profile" : "parent"
}
}
}, {
"id" : "85d553e6-efca-4305-bdb1-961b44292baa",
"hostId" : "48749add-2e0f-4651-95e9-77e5432b2d80",
"ownerIdentityId" : "ba960094-e7d3-43d2-8a52-d528d30d17b9",
"createdBy" : "ba960094-e7d3-43d2-8a52-d528d30d17b9",
"createdAt" : "2024-09-02T06:39:50.463902Z",
"updatedAt" : "2024-09-02T06:39:50.463902Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1962",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1961",
"productVersion" : "7.3.36",
"networkId" : "b36bb0c9-721c-46aa-8c23-38d91d60e9bd",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/48749add-2e0f-4651-95e9-77e5432b2d80"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/85d553e6-efca-4305-bdb1-961b44292baa",
"title" : "er-test-1961"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b36bb0c9-721c-46aa-8c23-38d91d60e9bd",
"profile" : "parent"
}
}
}, {
"id" : "869023dc-c4e3-4557-9fdb-a410a047e299",
"hostId" : "b83fae0a-7791-4348-8108-659d55621ee4",
"ownerIdentityId" : "f4732d85-6381-421d-bc47-9f84bc12b4f2",
"createdBy" : "f4732d85-6381-421d-bc47-9f84bc12b4f2",
"createdAt" : "2024-09-02T06:39:45.843054Z",
"updatedAt" : "2024-09-02T06:39:45.893646Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "4a6d79ff-9daa-4c08-960c-46e23f9c5f1b",
"domainName" : null,
"alternateDomainName" : null,
"name" : "edgerouter-1582",
"productVersion" : "7.3.36",
"networkId" : "5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "6dcd0ee7-0774-4c1d-987a-bff2ea4ca44a",
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b83fae0a-7791-4348-8108-659d55621ee4"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/869023dc-c4e3-4557-9fdb-a410a047e299",
"title" : "edgerouter-1582"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/6dcd0ee7-0774-4c1d-987a-bff2ea4ca44a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/6dcd0ee7-0774-4c1d-987a-bff2ea4ca44a",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "8c8f5e65-c87d-403b-ae80-ae469ef1d0c1",
"hostId" : "53e62b8b-6fb9-4bd0-b4ab-138850593b90",
"ownerIdentityId" : "72f1f963-3b9f-4f22-bf9d-c86522d85d4e",
"createdBy" : "72f1f963-3b9f-4f22-bf9d-c86522d85d4e",
"createdAt" : "2024-09-02T06:39:50.692683Z",
"updatedAt" : "2024-09-02T06:39:50.692683Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2032",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2031",
"productVersion" : "7.3.36",
"networkId" : "69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/53e62b8b-6fb9-4bd0-b4ab-138850593b90"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8c8f5e65-c87d-403b-ae80-ae469ef1d0c1",
"title" : "er-test-2031"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"profile" : "parent"
}
}
}, {
"id" : "8d48f166-ee8e-4b94-b39f-d0cd6116e1b5",
"hostId" : "eae2f17e-1588-4eb7-97c3-a4c74b7f5d11",
"ownerIdentityId" : "b36e8d63-2376-4136-bed8-cd453853e543",
"createdBy" : "b36e8d63-2376-4136-bed8-cd453853e543",
"createdAt" : "2024-09-02T06:39:45.957019Z",
"updatedAt" : "2024-09-02T06:39:45.957019Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1594",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1593",
"productVersion" : "7.3.36",
"networkId" : "74ea6b58-10d9-49bd-a825-ff4894f46aab",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/eae2f17e-1588-4eb7-97c3-a4c74b7f5d11"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8d48f166-ee8e-4b94-b39f-d0cd6116e1b5",
"title" : "er-test-1593"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/74ea6b58-10d9-49bd-a825-ff4894f46aab",
"profile" : "parent"
}
}
}, {
"id" : "926a2417-a507-4c5c-89f0-2de65548c456",
"hostId" : "57e0a706-dba8-4846-8e64-2b041051b8e3",
"ownerIdentityId" : "dcce5961-65cc-42a6-9b02-b07c1c0d459a",
"createdBy" : "dcce5961-65cc-42a6-9b02-b07c1c0d459a",
"createdAt" : "2024-09-02T06:39:50.623109Z",
"updatedAt" : "2024-09-02T06:39:50.654257Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2010",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2009",
"productVersion" : "7.3.36",
"networkId" : "854b3535-18c9-4cc7-b9a7-0122ff2ed0d9",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "b0b8902c-d6b4-42ec-b2a9-0cce26b2021c",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "medium",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/57e0a706-dba8-4846-8e64-2b041051b8e3"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/926a2417-a507-4c5c-89f0-2de65548c456",
"title" : "er-test-2009"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b0b8902c-d6b4-42ec-b2a9-0cce26b2021c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/854b3535-18c9-4cc7-b9a7-0122ff2ed0d9",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b0b8902c-d6b4-42ec-b2a9-0cce26b2021c",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "9529a9c2-43fa-4312-ae0b-1ed64d94d9b8",
"hostId" : "945e40c3-f212-4b19-a399-ed942c93c5b8",
"ownerIdentityId" : "1d955f86-4c4c-4b76-8f12-20454eb8ab1c",
"createdBy" : "1d955f86-4c4c-4b76-8f12-20454eb8ab1c",
"createdAt" : "2024-09-02T06:39:50.380467Z",
"updatedAt" : "2024-09-02T06:39:50.393561Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1915",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1914",
"productVersion" : "7.3.36",
"networkId" : "a0813f49-88d8-4554-961d-90d60e1e6153",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : true,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "ad042dd8-2a54-468b-9536-45a8efacee2e",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/945e40c3-f212-4b19-a399-ed942c93c5b8"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9529a9c2-43fa-4312-ae0b-1ed64d94d9b8",
"title" : "er-test-1914"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ad042dd8-2a54-468b-9536-45a8efacee2e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a0813f49-88d8-4554-961d-90d60e1e6153",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ad042dd8-2a54-468b-9536-45a8efacee2e",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "987307a0-11d4-46e7-8ce3-badceccd58e4",
"hostId" : "ea001dad-b3c6-4ae7-9eac-deaa7cdc4e8a",
"ownerIdentityId" : "28faf8ef-2fc4-460f-8d41-ec8c4c6417c9",
"createdBy" : "28faf8ef-2fc4-460f-8d41-ec8c4c6417c9",
"createdAt" : "2024-09-02T06:39:44.485899Z",
"updatedAt" : "2024-09-02T06:39:44.485899Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1427",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1426",
"productVersion" : "7.3.36",
"networkId" : "622e19f9-86fb-43e8-8ef4-072879597dd6",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ea001dad-b3c6-4ae7-9eac-deaa7cdc4e8a"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/987307a0-11d4-46e7-8ce3-badceccd58e4",
"title" : "er-test-1426"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/622e19f9-86fb-43e8-8ef4-072879597dd6",
"profile" : "parent"
}
}
}, {
"id" : "9c79217b-035b-4258-8e5d-7485953e9d80",
"hostId" : "2ad70ecf-f3ed-4b93-9043-66c8a2da9392",
"ownerIdentityId" : "214e8cad-aaf6-4682-94ab-2d720f5be22d",
"createdBy" : "214e8cad-aaf6-4682-94ab-2d720f5be22d",
"createdAt" : "2024-09-02T06:39:48.593499Z",
"updatedAt" : "2024-09-02T06:39:48.593499Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1833",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1832",
"productVersion" : "7.3.36",
"networkId" : "196603f0-4421-46f8-b545-da71b85c01da",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2ad70ecf-f3ed-4b93-9043-66c8a2da9392"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9c79217b-035b-4258-8e5d-7485953e9d80",
"title" : "er-test-1832"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/196603f0-4421-46f8-b545-da71b85c01da",
"profile" : "parent"
}
}
}, {
"id" : "9cf94ebe-3ae1-4f06-8f3d-766ed93f9fcf",
"hostId" : "1dcc344a-bc6e-46af-8bdd-e8ea3ddfe1f2",
"ownerIdentityId" : "8b32f3a2-5406-421b-8371-6d7c3e0ced17",
"createdBy" : "8b32f3a2-5406-421b-8371-6d7c3e0ced17",
"createdAt" : "2024-09-02T06:39:50.231111Z",
"updatedAt" : "2024-09-02T06:39:50.231111Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1852",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1851",
"productVersion" : "7.3.36",
"networkId" : "c5d06642-677d-4226-81da-f40b58875302",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/1dcc344a-bc6e-46af-8bdd-e8ea3ddfe1f2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9cf94ebe-3ae1-4f06-8f3d-766ed93f9fcf",
"title" : "er-test-1851"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c5d06642-677d-4226-81da-f40b58875302",
"profile" : "parent"
}
}
}, {
"id" : "9de6343c-e49b-45f5-b1e9-ea9358c00bab",
"hostId" : "9f26b140-7727-48c0-a56f-de0754da7ad2",
"ownerIdentityId" : "42e8d247-dacb-49b6-88d1-763275ac3ac5",
"createdBy" : "42e8d247-dacb-49b6-88d1-763275ac3ac5",
"createdAt" : "2024-09-02T06:39:45.958246Z",
"updatedAt" : "2024-09-02T06:39:45.958246Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1597",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1596",
"productVersion" : "7.3.36",
"networkId" : "74ea6b58-10d9-49bd-a825-ff4894f46aab",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9f26b140-7727-48c0-a56f-de0754da7ad2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9de6343c-e49b-45f5-b1e9-ea9358c00bab",
"title" : "er-test-1596"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/74ea6b58-10d9-49bd-a825-ff4894f46aab",
"profile" : "parent"
}
}
}, {
"id" : "9e894f1a-dba8-45dc-98ad-45a7f1a5ed41",
"hostId" : "e0f46f66-5ef0-4ca6-96f2-09dcedcd65c8",
"ownerIdentityId" : "8638f8d8-5a04-4494-b815-bc5c644682ff",
"createdBy" : "8638f8d8-5a04-4494-b815-bc5c644682ff",
"createdAt" : "2024-09-02T06:39:50.381485Z",
"updatedAt" : "2024-09-02T06:39:50.381485Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1918",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1917",
"productVersion" : "7.3.36",
"networkId" : "a0813f49-88d8-4554-961d-90d60e1e6153",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e0f46f66-5ef0-4ca6-96f2-09dcedcd65c8"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9e894f1a-dba8-45dc-98ad-45a7f1a5ed41",
"title" : "er-test-1917"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a0813f49-88d8-4554-961d-90d60e1e6153",
"profile" : "parent"
}
}
}, {
"id" : "9f030d6e-eab8-4eea-a7e0-10f2f0df76d7",
"hostId" : "f6ee067e-5865-4cc8-b066-c03bb39be7db",
"ownerIdentityId" : "e079b1f8-4306-40b5-bfcf-32bc21f14474",
"createdBy" : "e079b1f8-4306-40b5-bfcf-32bc21f14474",
"createdAt" : "2024-09-02T06:39:46.218456Z",
"updatedAt" : "2024-09-02T06:39:46.225005Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1657",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1656",
"productVersion" : "7.3.36",
"networkId" : "0e21e6b5-516e-48b1-a98c-16f62597fcd2",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "e3776b9c-4e03-4ad6-beb7-677b938e4284",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f6ee067e-5865-4cc8-b066-c03bb39be7db"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9f030d6e-eab8-4eea-a7e0-10f2f0df76d7",
"title" : "er-test-1656"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/e3776b9c-4e03-4ad6-beb7-677b938e4284"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0e21e6b5-516e-48b1-a98c-16f62597fcd2",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/e3776b9c-4e03-4ad6-beb7-677b938e4284",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "a0d2db51-2fea-4992-9167-9a64bc9ee092",
"hostId" : "67713d5a-97a2-455e-bf2c-c0049d581076",
"ownerIdentityId" : "80a8c8fb-279a-4f23-acdb-dafdffb67095",
"createdBy" : "80a8c8fb-279a-4f23-acdb-dafdffb67095",
"createdAt" : "2024-09-02T06:39:45.645144Z",
"updatedAt" : "2024-09-02T06:39:45.645144Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1575",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1574",
"productVersion" : "7.3.36",
"networkId" : "5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/67713d5a-97a2-455e-bf2c-c0049d581076"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a0d2db51-2fea-4992-9167-9a64bc9ee092",
"title" : "er-test-1574"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"profile" : "parent"
}
}
}, {
"id" : "a3944d47-0dda-4d6b-9e7b-773d2d23a523",
"hostId" : "7b422632-94f3-49f1-ad19-8adf6b957a88",
"ownerIdentityId" : "f75a2f55-ff81-4195-969f-7121fcf717b9",
"createdBy" : "f75a2f55-ff81-4195-969f-7121fcf717b9",
"createdAt" : "2024-09-02T06:39:46.351810Z",
"updatedAt" : "2024-09-02T06:39:46.351810Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1701",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1700",
"productVersion" : "7.3.36",
"networkId" : "9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7b422632-94f3-49f1-ad19-8adf6b957a88"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a3944d47-0dda-4d6b-9e7b-773d2d23a523",
"title" : "er-test-1700"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"profile" : "parent"
}
}
}, {
"id" : "a78e627e-2489-424b-a4a0-c1ade73466b3",
"hostId" : "91a9f187-1398-4e44-866b-3f74463cdea0",
"ownerIdentityId" : "4324954e-49fb-4ad0-8b62-ab1948dbc9de",
"createdBy" : "4324954e-49fb-4ad0-8b62-ab1948dbc9de",
"createdAt" : "2024-09-02T06:39:46.220877Z",
"updatedAt" : "2024-09-02T06:39:46.220877Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1660",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1659",
"productVersion" : "7.3.36",
"networkId" : "0e21e6b5-516e-48b1-a98c-16f62597fcd2",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/91a9f187-1398-4e44-866b-3f74463cdea0"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a78e627e-2489-424b-a4a0-c1ade73466b3",
"title" : "er-test-1659"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0e21e6b5-516e-48b1-a98c-16f62597fcd2",
"profile" : "parent"
}
}
}, {
"id" : "a7c4d18f-8621-4837-b0b8-7a82d5e366d2",
"hostId" : "772d8fa2-c2c7-4865-8e64-f3f5a1705919",
"ownerIdentityId" : "d631f63b-3ad8-4a63-ba0e-c4cb2fa47a2f",
"createdBy" : "d631f63b-3ad8-4a63-ba0e-c4cb2fa47a2f",
"createdAt" : "2024-09-02T06:39:46.389669Z",
"updatedAt" : "2024-09-02T06:39:46.405071Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "wlBFj0JY8h1lRV9RM__TX",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Test edge router 1725259186",
"productVersion" : "7.3.36",
"networkId" : "9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : true,
"online" : false,
"verified" : false,
"status" : "PROVISIONING",
"softwareDeploymentStateId" : "4215e209-8b82-428c-9eb6-c8ee296e5f85",
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/772d8fa2-c2c7-4865-8e64-f3f5a1705919"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a7c4d18f-8621-4837-b0b8-7a82d5e366d2",
"title" : "Test edge router 1725259186"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/4215e209-8b82-428c-9eb6-c8ee296e5f85"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/4215e209-8b82-428c-9eb6-c8ee296e5f85",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "a8a177a0-80c4-4d46-8401-5d708c5f6e00",
"hostId" : "7cd1a2a5-32f9-43bf-a2a9-b3778e39e681",
"ownerIdentityId" : "2f418152-4761-4118-9328-473e3eb6f971",
"createdBy" : "2f418152-4761-4118-9328-473e3eb6f971",
"createdAt" : "2024-09-02T06:39:50.461768Z",
"updatedAt" : "2024-09-02T06:39:50.461768Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1956",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1955",
"productVersion" : "7.3.36",
"networkId" : "b36bb0c9-721c-46aa-8c23-38d91d60e9bd",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7cd1a2a5-32f9-43bf-a2a9-b3778e39e681"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a8a177a0-80c4-4d46-8401-5d708c5f6e00",
"title" : "er-test-1955"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b36bb0c9-721c-46aa-8c23-38d91d60e9bd",
"profile" : "parent"
}
}
}, {
"id" : "abd0b11e-821c-4473-9939-409f6368c5e9",
"hostId" : "7793733d-feef-4aad-88b6-8360025ce107",
"ownerIdentityId" : "ff3db9b7-afd9-417d-81bb-87f0dc059641",
"createdBy" : "ff3db9b7-afd9-417d-81bb-87f0dc059641",
"createdAt" : "2024-09-02T06:39:50.293536Z",
"updatedAt" : "2024-09-02T06:39:50.298262Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1877",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1876",
"productVersion" : "7.3.36",
"networkId" : "1d3d9d7d-c538-419d-91c8-c9f8370d886f",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "7a3ee033-e077-45e4-bdb5-9cee6adffb8d",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7793733d-feef-4aad-88b6-8360025ce107"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/abd0b11e-821c-4473-9939-409f6368c5e9",
"title" : "er-test-1876"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7a3ee033-e077-45e4-bdb5-9cee6adffb8d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1d3d9d7d-c538-419d-91c8-c9f8370d886f",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7a3ee033-e077-45e4-bdb5-9cee6adffb8d",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "ae6dced3-d95c-4cb1-8bd5-65d1effe0680",
"hostId" : "cce436bd-1d41-4222-a655-6b85efad8c50",
"ownerIdentityId" : "76aba18a-9c4b-45c3-84de-f3c61f4991e8",
"createdBy" : "76aba18a-9c4b-45c3-84de-f3c61f4991e8",
"createdAt" : "2024-09-02T06:39:46.047790Z",
"updatedAt" : "2024-09-02T06:39:46.047790Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1619",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1618",
"productVersion" : "7.3.36",
"networkId" : "3bb6ff55-4978-4402-b059-7b27bd1fee55",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/cce436bd-1d41-4222-a655-6b85efad8c50"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ae6dced3-d95c-4cb1-8bd5-65d1effe0680",
"title" : "er-test-1618"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3bb6ff55-4978-4402-b059-7b27bd1fee55",
"profile" : "parent"
}
}
}, {
"id" : "b0086403-3165-4a6d-ba14-3bee5ca5c66d",
"hostId" : "a6b9cb87-12d6-4ed0-a329-00487c443511",
"ownerIdentityId" : "857b4e99-ec89-404b-b95e-cc5c9e8cbdb0",
"createdBy" : "857b4e99-ec89-404b-b95e-cc5c9e8cbdb0",
"createdAt" : "2024-09-02T06:39:50.759120Z",
"updatedAt" : "2024-09-02T06:39:50.759120Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2054",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2053",
"productVersion" : "7.3.36",
"networkId" : "88e1f54f-0062-4afb-89b1-00a9d0c5b078",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a6b9cb87-12d6-4ed0-a329-00487c443511"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b0086403-3165-4a6d-ba14-3bee5ca5c66d",
"title" : "er-test-2053"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/88e1f54f-0062-4afb-89b1-00a9d0c5b078",
"profile" : "parent"
}
}
}, {
"id" : "b10a3313-173d-4fed-adb2-d85630c58510",
"hostId" : "8e8a4e7d-a307-42e7-97e5-1dfbf85220ad",
"ownerIdentityId" : "832c316a-eb72-41c5-a28f-4cdc995fd053",
"createdBy" : "832c316a-eb72-41c5-a28f-4cdc995fd053",
"createdAt" : "2024-09-02T06:39:45.384141Z",
"updatedAt" : "2024-09-02T06:39:45.384141Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1525",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1524",
"productVersion" : "7.3.36",
"networkId" : "92c4083f-b0c6-426d-8124-b0edd73b22de",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8e8a4e7d-a307-42e7-97e5-1dfbf85220ad"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b10a3313-173d-4fed-adb2-d85630c58510",
"title" : "er-test-1524"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/92c4083f-b0c6-426d-8124-b0edd73b22de",
"profile" : "parent"
}
}
}, {
"id" : "b15dad16-e5d0-4624-bb00-f8a2c9d3e47c",
"hostId" : "fa643d59-efbf-4fae-a15a-771b6c272ff2",
"ownerIdentityId" : "73fee04a-ffef-4b0a-9e71-3d8133697d01",
"createdBy" : "73fee04a-ffef-4b0a-9e71-3d8133697d01",
"createdAt" : "2024-09-02T06:39:46.475670Z",
"updatedAt" : "2024-09-02T06:39:46.486602Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1714",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1713",
"productVersion" : "7.3.36",
"networkId" : "ff74ea29-fc78-40c0-ba42-b331b148fefd",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "653c1418-1733-4fbd-aa1c-b369902bcb87",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fa643d59-efbf-4fae-a15a-771b6c272ff2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b15dad16-e5d0-4624-bb00-f8a2c9d3e47c",
"title" : "er-test-1713"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/653c1418-1733-4fbd-aa1c-b369902bcb87"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ff74ea29-fc78-40c0-ba42-b331b148fefd",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/653c1418-1733-4fbd-aa1c-b369902bcb87",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "b22c8759-eeea-480d-b452-8128ae7f2cdb",
"hostId" : "c78af641-4a25-4a75-81b4-9f088ed48cc3",
"ownerIdentityId" : "7dc694e9-432e-436d-8a8f-5566180ead0e",
"createdBy" : "7dc694e9-432e-436d-8a8f-5566180ead0e",
"createdAt" : "2024-09-02T06:39:44.056947Z",
"updatedAt" : "2024-09-02T06:39:44.070882Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1367",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1366",
"productVersion" : "7.3.36",
"networkId" : "5fb41378-a560-454c-a43b-564bdc86898c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "db387bcf-1c18-4ba5-94e2-f31876746b97",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c78af641-4a25-4a75-81b4-9f088ed48cc3"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b22c8759-eeea-480d-b452-8128ae7f2cdb",
"title" : "er-test-1366"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/db387bcf-1c18-4ba5-94e2-f31876746b97"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5fb41378-a560-454c-a43b-564bdc86898c",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/db387bcf-1c18-4ba5-94e2-f31876746b97",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "b2658e18-c68e-4bc1-a33c-a217839543e4",
"hostId" : "b7296a52-41fa-4ff2-bbe7-821ae1c869d8",
"ownerIdentityId" : "08dbc060-01b1-49c3-ab86-87cdbccd344c",
"createdBy" : "08dbc060-01b1-49c3-ab86-87cdbccd344c",
"createdAt" : "2024-09-02T06:39:46.924092Z",
"updatedAt" : "2024-09-02T06:39:46.924092Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1817",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1816",
"productVersion" : "7.3.36",
"networkId" : "8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b7296a52-41fa-4ff2-bbe7-821ae1c869d8"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b2658e18-c68e-4bc1-a33c-a217839543e4",
"title" : "er-test-1816"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"profile" : "parent"
}
}
}, {
"id" : "b377501f-b197-449e-9b65-b656d8881697",
"hostId" : "5a890a54-d84a-4d28-91d8-4d2cc950404a",
"ownerIdentityId" : "e9ded69f-ec8d-4968-a8c3-2a57695c8b9c",
"createdBy" : "e9ded69f-ec8d-4968-a8c3-2a57695c8b9c",
"createdAt" : "2024-09-02T06:39:50.879320Z",
"updatedAt" : "2024-09-02T06:39:50.879320Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2103",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2102",
"productVersion" : "7.3.36",
"networkId" : "9a452844-60ff-449d-a84e-ec5d3d29c17a",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5a890a54-d84a-4d28-91d8-4d2cc950404a"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b377501f-b197-449e-9b65-b656d8881697",
"title" : "er-test-2102"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9a452844-60ff-449d-a84e-ec5d3d29c17a",
"profile" : "parent"
}
}
}, {
"id" : "b4c4e84d-aa8c-4608-9813-703733831d79",
"hostId" : "4fcc7b7a-8acf-428f-95f3-d5a69cc3905a",
"ownerIdentityId" : "9312397b-482a-425e-a207-b27a8af714dc",
"createdBy" : "9312397b-482a-425e-a207-b27a8af714dc",
"createdAt" : "2024-09-02T06:39:46.551690Z",
"updatedAt" : "2024-09-02T06:39:46.551690Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1742",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1741",
"productVersion" : "7.3.36",
"networkId" : "a68621a5-e1a0-4c9d-b315-dae77d72b35c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4fcc7b7a-8acf-428f-95f3-d5a69cc3905a"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b4c4e84d-aa8c-4608-9813-703733831d79",
"title" : "er-test-1741"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a68621a5-e1a0-4c9d-b315-dae77d72b35c",
"profile" : "parent"
}
}
}, {
"id" : "b728211a-4235-4e00-a9dd-0430391ad24e",
"hostId" : "b8e0955a-f1a8-42da-ab4f-e1e6eeb1b49b",
"ownerIdentityId" : "7bacdad8-ef53-498f-aea4-dbfe0805dd5b",
"createdBy" : "7bacdad8-ef53-498f-aea4-dbfe0805dd5b",
"createdAt" : "2024-09-02T06:39:46.289560Z",
"updatedAt" : "2024-09-02T06:39:46.289560Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1679",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1678",
"productVersion" : "7.3.36",
"networkId" : "b726ebb8-41b8-4a4b-ab1b-43e6732c582e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b8e0955a-f1a8-42da-ab4f-e1e6eeb1b49b"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b728211a-4235-4e00-a9dd-0430391ad24e",
"title" : "er-test-1678"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b726ebb8-41b8-4a4b-ab1b-43e6732c582e",
"profile" : "parent"
}
}
}, {
"id" : "bb51d5cc-a5a0-426b-b04a-71baa20e56f9",
"hostId" : "4925ee9c-8f12-4152-b725-dc537eea3112",
"ownerIdentityId" : "e3694996-4d5c-4b12-811d-7ac8ce1259ef",
"createdBy" : "e3694996-4d5c-4b12-811d-7ac8ce1259ef",
"createdAt" : "2024-09-02T06:39:44.821761Z",
"updatedAt" : "2024-09-02T06:39:44.827637Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1481",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1480",
"productVersion" : "7.3.36",
"networkId" : "fdf76f4c-5948-4d26-a26e-c4b7e2c69b1a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "0181165e-ce49-4ac4-a225-5137c913bb16",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4925ee9c-8f12-4152-b725-dc537eea3112"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bb51d5cc-a5a0-426b-b04a-71baa20e56f9",
"title" : "er-test-1480"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/0181165e-ce49-4ac4-a225-5137c913bb16"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fdf76f4c-5948-4d26-a26e-c4b7e2c69b1a",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/0181165e-ce49-4ac4-a225-5137c913bb16",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "bc2a278f-219f-41d2-bd2c-6ec9d9fd0aa8",
"hostId" : "dbfdf626-0b02-4ac4-8af9-5713d9f6fbfe",
"ownerIdentityId" : "84a8c14e-f862-41d7-8690-c7b9adbe0f60",
"createdBy" : "84a8c14e-f862-41d7-8690-c7b9adbe0f60",
"createdAt" : "2024-09-02T06:39:46.222135Z",
"updatedAt" : "2024-09-02T06:39:46.222135Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1663",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1662",
"productVersion" : "7.3.36",
"networkId" : "0e21e6b5-516e-48b1-a98c-16f62597fcd2",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/dbfdf626-0b02-4ac4-8af9-5713d9f6fbfe"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bc2a278f-219f-41d2-bd2c-6ec9d9fd0aa8",
"title" : "er-test-1662"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0e21e6b5-516e-48b1-a98c-16f62597fcd2",
"profile" : "parent"
}
}
}, {
"id" : "bcf03ef8-9403-4c06-8852-07ae2353ddd6",
"hostId" : "2f2e9d02-1453-41b0-92b6-c69ed4fc27bf",
"ownerIdentityId" : "28d49347-918c-492b-8cb0-8fdee89ffd86",
"createdBy" : "28d49347-918c-492b-8cb0-8fdee89ffd86",
"createdAt" : "2024-09-02T06:39:46.835308Z",
"updatedAt" : "2024-09-02T06:39:46.835308Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1788",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1787",
"productVersion" : "7.3.36",
"networkId" : "010e5673-5926-4fdc-b011-f84a62d707f5",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2f2e9d02-1453-41b0-92b6-c69ed4fc27bf"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bcf03ef8-9403-4c06-8852-07ae2353ddd6",
"title" : "er-test-1787"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/010e5673-5926-4fdc-b011-f84a62d707f5",
"profile" : "parent"
}
}
}, {
"id" : "bd4599db-3f76-4d4c-a74b-870fd071c12d",
"hostId" : "a6aebf50-e51a-41a3-9c00-c6684d92891f",
"ownerIdentityId" : "30f0d908-4d40-45d6-81a3-7b9f0d152202",
"createdBy" : "30f0d908-4d40-45d6-81a3-7b9f0d152202",
"createdAt" : "2024-09-02T06:39:44.825868Z",
"updatedAt" : "2024-09-02T06:39:44.825868Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1490",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1489",
"productVersion" : "7.3.36",
"networkId" : "fdf76f4c-5948-4d26-a26e-c4b7e2c69b1a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a6aebf50-e51a-41a3-9c00-c6684d92891f"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bd4599db-3f76-4d4c-a74b-870fd071c12d",
"title" : "er-test-1489"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fdf76f4c-5948-4d26-a26e-c4b7e2c69b1a",
"profile" : "parent"
}
}
}, {
"id" : "bdae6cb6-f5db-4e85-bcda-75b45a4bf603",
"hostId" : "235c88cf-a9aa-4e36-a14f-765b2015c610",
"ownerIdentityId" : "889601f8-4609-4933-ac99-51b0ada320c7",
"createdBy" : "889601f8-4609-4933-ac99-51b0ada320c7",
"createdAt" : "2024-09-02T06:39:44.487341Z",
"updatedAt" : "2024-09-02T06:39:44.487341Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1430",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1429",
"productVersion" : "7.3.36",
"networkId" : "622e19f9-86fb-43e8-8ef4-072879597dd6",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/235c88cf-a9aa-4e36-a14f-765b2015c610"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bdae6cb6-f5db-4e85-bcda-75b45a4bf603",
"title" : "er-test-1429"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/622e19f9-86fb-43e8-8ef4-072879597dd6",
"profile" : "parent"
}
}
}, {
"id" : "be3811c0-f521-4d07-bd0b-9000ae1c12dd",
"hostId" : "6ea52d5f-1456-43fa-9e98-a220705a6306",
"ownerIdentityId" : "f8c49476-4210-4f96-867d-93c44a42cff9",
"createdBy" : "f8c49476-4210-4f96-867d-93c44a42cff9",
"createdAt" : "2024-09-02T06:39:44.684334Z",
"updatedAt" : "2024-09-02T06:39:44.684334Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1465",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1464",
"productVersion" : "7.3.36",
"networkId" : "03f43471-4f06-4be6-8fd2-8faf5f1b2190",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6ea52d5f-1456-43fa-9e98-a220705a6306"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/be3811c0-f521-4d07-bd0b-9000ae1c12dd",
"title" : "er-test-1464"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/03f43471-4f06-4be6-8fd2-8faf5f1b2190",
"profile" : "parent"
}
}
}, {
"id" : "beeac925-a61f-42fe-8a3a-92796631f1d2",
"hostId" : "22a583cc-ea81-4cbd-8505-2a6ec17a5664",
"ownerIdentityId" : "e69fb730-c84d-41cb-8d90-e327b79c8128",
"createdBy" : "e69fb730-c84d-41cb-8d90-e327b79c8128",
"createdAt" : "2024-09-02T06:39:50.758137Z",
"updatedAt" : "2024-09-02T06:39:50.758137Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2051",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2050",
"productVersion" : "7.3.36",
"networkId" : "88e1f54f-0062-4afb-89b1-00a9d0c5b078",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/22a583cc-ea81-4cbd-8505-2a6ec17a5664"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/beeac925-a61f-42fe-8a3a-92796631f1d2",
"title" : "er-test-2050"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/88e1f54f-0062-4afb-89b1-00a9d0c5b078",
"profile" : "parent"
}
}
}, {
"id" : "c0e858cc-82c6-4f6e-b335-b83366e6956f",
"hostId" : "4fdf11eb-b6e8-471e-9309-f11f16bb1a92",
"ownerIdentityId" : "77da4513-9f13-48d7-9b0a-6373bfcbc0e4",
"createdBy" : "77da4513-9f13-48d7-9b0a-6373bfcbc0e4",
"createdAt" : "2024-09-02T06:39:45.382898Z",
"updatedAt" : "2024-09-02T06:39:45.382898Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1522",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1521",
"productVersion" : "7.3.36",
"networkId" : "92c4083f-b0c6-426d-8124-b0edd73b22de",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4fdf11eb-b6e8-471e-9309-f11f16bb1a92"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c0e858cc-82c6-4f6e-b335-b83366e6956f",
"title" : "er-test-1521"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/92c4083f-b0c6-426d-8124-b0edd73b22de",
"profile" : "parent"
}
}
}, {
"id" : "c1641d23-c4bc-4322-949d-eb98f70d12ba",
"hostId" : "755c48b9-b5eb-4436-8bf6-deef08a359e0",
"ownerIdentityId" : "89bd991f-c73b-4b0d-9926-ec998b8dd0bf",
"createdBy" : "89bd991f-c73b-4b0d-9926-ec998b8dd0bf",
"createdAt" : "2024-09-02T06:39:44.824477Z",
"updatedAt" : "2024-09-02T06:39:44.824477Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1487",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1486",
"productVersion" : "7.3.36",
"networkId" : "fdf76f4c-5948-4d26-a26e-c4b7e2c69b1a",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/755c48b9-b5eb-4436-8bf6-deef08a359e0"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c1641d23-c4bc-4322-949d-eb98f70d12ba",
"title" : "er-test-1486"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fdf76f4c-5948-4d26-a26e-c4b7e2c69b1a",
"profile" : "parent"
}
}
}, {
"id" : "c512a606-61b0-444e-bd57-c1e6e273515a",
"hostId" : "dfc1bfe7-d087-47a1-9b79-e40673046c85",
"ownerIdentityId" : "28a2d476-517e-4bba-9b46-1c95233442dc",
"createdBy" : "28a2d476-517e-4bba-9b46-1c95233442dc",
"createdAt" : "2024-09-02T06:39:46.846450Z",
"updatedAt" : "2024-09-02T06:39:46.846450Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1802",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-ziti-features-1801",
"productVersion" : "7.3.4",
"networkId" : "7cfb01f0-82e9-41c5-a475-5f4943bd28ee",
"jwt" : null,
"linkListener" : true,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/dfc1bfe7-d087-47a1-9b79-e40673046c85"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c512a606-61b0-444e-bd57-c1e6e273515a",
"title" : "er-ziti-features-1801"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/7cfb01f0-82e9-41c5-a475-5f4943bd28ee",
"profile" : "parent"
}
}
}, {
"id" : "c6a3186f-cce5-4a62-b977-6b33da422b81",
"hostId" : "afb3cd76-891c-45fb-b99d-6e0cdd5daa24",
"ownerIdentityId" : "d959d47d-7a06-421a-9ea8-48376d94cbba",
"createdBy" : "d959d47d-7a06-421a-9ea8-48376d94cbba",
"createdAt" : "2024-09-02T06:39:44.823247Z",
"updatedAt" : "2024-09-02T06:39:44.823247Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1484",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1483",
"productVersion" : "7.3.36",
"networkId" : "fdf76f4c-5948-4d26-a26e-c4b7e2c69b1a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/afb3cd76-891c-45fb-b99d-6e0cdd5daa24"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c6a3186f-cce5-4a62-b977-6b33da422b81",
"title" : "er-test-1483"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fdf76f4c-5948-4d26-a26e-c4b7e2c69b1a",
"profile" : "parent"
}
}
}, {
"id" : "c7463dd1-b6e5-493b-b53d-abd564b37ad6",
"hostId" : "eba8aa27-a1ef-4599-94bf-df6c380f5d5c",
"ownerIdentityId" : "dfbf5c6a-afde-4b35-9d7b-21fc268c2293",
"createdBy" : "dfbf5c6a-afde-4b35-9d7b-21fc268c2293",
"createdAt" : "2024-09-02T06:39:50.548625Z",
"updatedAt" : "2024-09-02T06:39:50.548625Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1997",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1996",
"productVersion" : "7.3.36",
"networkId" : "6061dc2b-5cc2-4553-8424-81188915bca2",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/eba8aa27-a1ef-4599-94bf-df6c380f5d5c"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c7463dd1-b6e5-493b-b53d-abd564b37ad6",
"title" : "er-test-1996"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6061dc2b-5cc2-4553-8424-81188915bca2",
"profile" : "parent"
}
}
}, {
"id" : "c857e892-c9a1-49cb-aa37-f487f44495af",
"hostId" : "ea396de1-e14b-433c-9e02-56d4807c5302",
"ownerIdentityId" : "a45f8a28-ead2-445a-b3ac-81fd0eb6d961",
"createdBy" : "a45f8a28-ead2-445a-b3ac-81fd0eb6d961",
"createdAt" : "2024-09-02T06:39:50.957245Z",
"updatedAt" : "2024-09-02T06:39:50.957245Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2119",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2118",
"productVersion" : "7.3.36",
"networkId" : "8f335fb1-67b6-40de-8aef-3a4ea05eb33c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ea396de1-e14b-433c-9e02-56d4807c5302"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c857e892-c9a1-49cb-aa37-f487f44495af",
"title" : "er-test-2118"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8f335fb1-67b6-40de-8aef-3a4ea05eb33c",
"profile" : "parent"
}
}
}, {
"id" : "c9967d15-74bc-4c73-912f-569cd39f2d12",
"hostId" : "5a66e867-3cc8-4169-a67e-b7207c8ea2e1",
"ownerIdentityId" : "48ce208d-fabf-474b-80b5-90860ebcc130",
"createdBy" : "48ce208d-fabf-474b-80b5-90860ebcc130",
"createdAt" : "2024-09-02T06:39:46.550287Z",
"updatedAt" : "2024-09-02T06:39:46.550287Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1739",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1738",
"productVersion" : "7.3.36",
"networkId" : "a68621a5-e1a0-4c9d-b315-dae77d72b35c",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5a66e867-3cc8-4169-a67e-b7207c8ea2e1"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c9967d15-74bc-4c73-912f-569cd39f2d12",
"title" : "er-test-1738"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a68621a5-e1a0-4c9d-b315-dae77d72b35c",
"profile" : "parent"
}
}
}, {
"id" : "ca695a78-d708-4c1a-8898-9d0f93a51764",
"hostId" : "7ca814d0-886e-4a60-b813-f53ded49a192",
"ownerIdentityId" : "9374aa42-237b-40c0-8676-7d1407d0c5c9",
"createdBy" : "9374aa42-237b-40c0-8676-7d1407d0c5c9",
"createdAt" : "2024-09-02T06:39:48.596940Z",
"updatedAt" : "2024-09-02T06:39:48.596940Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1839",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1838",
"productVersion" : "7.3.36",
"networkId" : "196603f0-4421-46f8-b545-da71b85c01da",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7ca814d0-886e-4a60-b813-f53ded49a192"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ca695a78-d708-4c1a-8898-9d0f93a51764",
"title" : "er-test-1838"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/196603f0-4421-46f8-b545-da71b85c01da",
"profile" : "parent"
}
}
}, {
"id" : "cc0c85ec-5e48-48f4-b962-2ac368a383ba",
"hostId" : "19ec3927-e734-453e-92b7-80e9c5810534",
"ownerIdentityId" : "d4ddc00d-a2c9-4c55-b6e2-575dc9939e13",
"createdBy" : "d4ddc00d-a2c9-4c55-b6e2-575dc9939e13",
"createdAt" : "2024-09-02T06:39:50.429951Z",
"updatedAt" : "2024-09-02T06:39:50.429951Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1940",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1939",
"productVersion" : "7.3.36",
"networkId" : "4bb5778b-f7e8-408c-a2b2-9227aecfa19a",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/19ec3927-e734-453e-92b7-80e9c5810534"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cc0c85ec-5e48-48f4-b962-2ac368a383ba",
"title" : "er-test-1939"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4bb5778b-f7e8-408c-a2b2-9227aecfa19a",
"profile" : "parent"
}
}
}, {
"id" : "cef90b71-f0a0-46ab-a15d-90a51cef9604",
"hostId" : "293b2f3a-b400-435d-aa85-a5a760476f30",
"ownerIdentityId" : "9d5e45c0-c559-4969-932e-da141c525d90",
"createdBy" : "9d5e45c0-c559-4969-932e-da141c525d90",
"createdAt" : "2024-09-02T06:39:46.748301Z",
"updatedAt" : "2024-09-02T06:39:46.748301Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1766",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1765",
"productVersion" : "7.3.36",
"networkId" : "5686f5d7-d344-43bb-9840-b1c2a9aad58e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/293b2f3a-b400-435d-aa85-a5a760476f30"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cef90b71-f0a0-46ab-a15d-90a51cef9604",
"title" : "er-test-1765"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5686f5d7-d344-43bb-9840-b1c2a9aad58e",
"profile" : "parent"
}
}
}, {
"id" : "d0b85a44-260c-4ad9-aaad-50931dfa6fe8",
"hostId" : "27ba8818-2dfe-4222-91c2-28700d3c4cb2",
"ownerIdentityId" : "a241160a-ba97-4c74-985b-bd78451d8b8d",
"createdBy" : "a241160a-ba97-4c74-985b-bd78451d8b8d",
"createdAt" : "2024-09-02T06:39:44.400012Z",
"updatedAt" : "2024-09-02T06:39:44.408255Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1405",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1404",
"productVersion" : "7.3.36",
"networkId" : "592b2d23-fb71-41b7-9d18-9e41e28a3d5d",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "b5272237-ee5a-4fd4-82ca-da3c02656786",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/27ba8818-2dfe-4222-91c2-28700d3c4cb2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d0b85a44-260c-4ad9-aaad-50931dfa6fe8",
"title" : "er-test-1404"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b5272237-ee5a-4fd4-82ca-da3c02656786"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/592b2d23-fb71-41b7-9d18-9e41e28a3d5d",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b5272237-ee5a-4fd4-82ca-da3c02656786",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "d2e33360-d2a2-4dd9-ba6a-e20695a26084",
"hostId" : "8e08f845-6815-49e8-a726-0b2ca1aa70c1",
"ownerIdentityId" : "ff82324e-60fe-4e7a-8dd9-88a3eccae1dd",
"createdBy" : "ff82324e-60fe-4e7a-8dd9-88a3eccae1dd",
"createdAt" : "2024-09-02T06:39:45.646496Z",
"updatedAt" : "2024-09-02T06:39:45.646496Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1578",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1577",
"productVersion" : "7.3.36",
"networkId" : "5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8e08f845-6815-49e8-a726-0b2ca1aa70c1"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d2e33360-d2a2-4dd9-ba6a-e20695a26084",
"title" : "er-test-1577"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5e4a8812-e75d-43d2-b7b0-a620df4b52ab",
"profile" : "parent"
}
}
}, {
"id" : "d4ac54e6-e776-4c3f-9995-d3354a8ac489",
"hostId" : "bdda10c9-5550-44c0-a987-d4034bc5a71a",
"ownerIdentityId" : "595d1a03-5d0a-4d28-9d34-235ea5b62260",
"createdBy" : "595d1a03-5d0a-4d28-9d34-235ea5b62260",
"createdAt" : "2024-09-02T06:39:44.061959Z",
"updatedAt" : "2024-09-02T06:39:44.061959Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1376",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1375",
"productVersion" : "7.3.36",
"networkId" : "5fb41378-a560-454c-a43b-564bdc86898c",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bdda10c9-5550-44c0-a987-d4034bc5a71a"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d4ac54e6-e776-4c3f-9995-d3354a8ac489",
"title" : "er-test-1375"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5fb41378-a560-454c-a43b-564bdc86898c",
"profile" : "parent"
}
}
}, {
"id" : "d4c2fd06-e9a3-4550-94d2-f6d89f809ce5",
"hostId" : "3f7ad355-28bf-4691-bada-c36ea6dd82c8",
"ownerIdentityId" : "64e9cad2-966d-4ba6-940b-666b396c1b7a",
"createdBy" : "64e9cad2-966d-4ba6-940b-666b396c1b7a",
"createdAt" : "2024-09-02T06:39:50.428063Z",
"updatedAt" : "2024-09-02T06:39:50.432167Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1934",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1933",
"productVersion" : "7.3.36",
"networkId" : "4bb5778b-f7e8-408c-a2b2-9227aecfa19a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "a5b2bdb1-da99-4540-a80e-2c9ecf92a558",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3f7ad355-28bf-4691-bada-c36ea6dd82c8"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d4c2fd06-e9a3-4550-94d2-f6d89f809ce5",
"title" : "er-test-1933"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/a5b2bdb1-da99-4540-a80e-2c9ecf92a558"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4bb5778b-f7e8-408c-a2b2-9227aecfa19a",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/a5b2bdb1-da99-4540-a80e-2c9ecf92a558",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "d8a34e71-e775-4765-b137-9cfeeb4a9f16",
"hostId" : "a3355f54-67d6-46ec-82a1-509ed0f49664",
"ownerIdentityId" : "234a56dc-fcb8-4bb3-a0b5-000801839ab1",
"createdBy" : "234a56dc-fcb8-4bb3-a0b5-000801839ab1",
"createdAt" : "2024-09-02T06:39:46.223493Z",
"updatedAt" : "2024-09-02T06:39:46.223493Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1666",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1665",
"productVersion" : "7.3.36",
"networkId" : "0e21e6b5-516e-48b1-a98c-16f62597fcd2",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a3355f54-67d6-46ec-82a1-509ed0f49664"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d8a34e71-e775-4765-b137-9cfeeb4a9f16",
"title" : "er-test-1665"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0e21e6b5-516e-48b1-a98c-16f62597fcd2",
"profile" : "parent"
}
}
}, {
"id" : "d925ed43-fbf1-4a7c-8435-8e5b8c1c3521",
"hostId" : "a4bcc009-68e3-4a10-abbf-a69e555a10ae",
"ownerIdentityId" : "bea0c808-483b-4bde-aec6-82406f2876e2",
"createdBy" : "bea0c808-483b-4bde-aec6-82406f2876e2",
"createdAt" : "2024-09-02T06:39:46.923140Z",
"updatedAt" : "2024-09-02T06:39:46.923140Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1814",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1813",
"productVersion" : "7.3.36",
"networkId" : "8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a4bcc009-68e3-4a10-abbf-a69e555a10ae"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d925ed43-fbf1-4a7c-8435-8e5b8c1c3521",
"title" : "er-test-1813"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"profile" : "parent"
}
}
}, {
"id" : "daf001dc-eea7-4666-9262-6c0bc57f258c",
"hostId" : "077e541a-d306-45bc-b9f5-237ce5b6ee28",
"ownerIdentityId" : "68da2b58-ed2e-43db-b7e2-bcbc97ac2d1e",
"createdBy" : "68da2b58-ed2e-43db-b7e2-bcbc97ac2d1e",
"createdAt" : "2024-09-02T06:39:44.881940Z",
"updatedAt" : "2024-09-02T06:39:44.888310Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1500",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1499",
"productVersion" : "7.3.36",
"networkId" : "14565985-5acd-4ae6-90f2-17bd4d68fdf7",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "b3c0cad2-2f7f-4eae-85b9-7e3e42b47c84",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/077e541a-d306-45bc-b9f5-237ce5b6ee28"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/daf001dc-eea7-4666-9262-6c0bc57f258c",
"title" : "er-test-1499"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b3c0cad2-2f7f-4eae-85b9-7e3e42b47c84"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/14565985-5acd-4ae6-90f2-17bd4d68fdf7",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b3c0cad2-2f7f-4eae-85b9-7e3e42b47c84",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "db4d80d4-6a30-461a-9f77-390fe07f52d9",
"hostId" : "9665b8fd-4eab-4438-afae-4774e83887c4",
"ownerIdentityId" : "249c5505-c5ed-4b48-b0af-c23065113e4b",
"createdBy" : "249c5505-c5ed-4b48-b0af-c23065113e4b",
"createdAt" : "2024-09-02T06:39:50.694734Z",
"updatedAt" : "2024-09-02T06:39:50.694734Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2038",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2037",
"productVersion" : "7.3.36",
"networkId" : "69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9665b8fd-4eab-4438-afae-4774e83887c4"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/db4d80d4-6a30-461a-9f77-390fe07f52d9",
"title" : "er-test-2037"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"profile" : "parent"
}
}
}, {
"id" : "dc7ee593-c8f9-465b-bb44-b973a729021e",
"hostId" : "622b55fb-521d-4caa-9cee-8ff021d86f2c",
"ownerIdentityId" : "60cced0c-5c72-4ff1-9bb1-ba694b1fdb3c",
"createdBy" : "60cced0c-5c72-4ff1-9bb1-ba694b1fdb3c",
"createdAt" : "2024-09-02T06:39:50.549808Z",
"updatedAt" : "2024-09-02T06:39:50.549808Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2000",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1999",
"productVersion" : "7.3.36",
"networkId" : "6061dc2b-5cc2-4553-8424-81188915bca2",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/622b55fb-521d-4caa-9cee-8ff021d86f2c"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/dc7ee593-c8f9-465b-bb44-b973a729021e",
"title" : "er-test-1999"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6061dc2b-5cc2-4553-8424-81188915bca2",
"profile" : "parent"
}
}
}, {
"id" : "e1be40b9-43d8-4aaa-a17c-cdbc63c1ac8b",
"hostId" : "16457374-ece1-48fc-bcf5-06a9fbd0eaa1",
"ownerIdentityId" : "3537ad1c-24ce-4b2c-b1af-e724929a88c4",
"createdBy" : "3537ad1c-24ce-4b2c-b1af-e724929a88c4",
"createdAt" : "2024-09-02T06:39:45.381156Z",
"updatedAt" : "2024-09-02T06:39:45.401033Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1519",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1518",
"productVersion" : "7.3.36",
"networkId" : "92c4083f-b0c6-426d-8124-b0edd73b22de",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "99c469ad-ae6c-46b3-b11e-fe048b3a32d5",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/16457374-ece1-48fc-bcf5-06a9fbd0eaa1"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e1be40b9-43d8-4aaa-a17c-cdbc63c1ac8b",
"title" : "er-test-1518"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/99c469ad-ae6c-46b3-b11e-fe048b3a32d5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/92c4083f-b0c6-426d-8124-b0edd73b22de",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/99c469ad-ae6c-46b3-b11e-fe048b3a32d5",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "e2accb58-4c5f-4765-990d-a4ca1aeb2f55",
"hostId" : "178eed8a-a1a4-460c-99b2-c8dba221b748",
"ownerIdentityId" : "ad0aeba3-9ca5-4a96-bcb6-66ec7f93899f",
"createdBy" : "ad0aeba3-9ca5-4a96-bcb6-66ec7f93899f",
"createdAt" : "2024-09-02T06:39:46.747051Z",
"updatedAt" : "2024-09-02T06:39:46.752539Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1763",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1762",
"productVersion" : "7.3.36",
"networkId" : "5686f5d7-d344-43bb-9840-b1c2a9aad58e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "d639a7e6-d25e-4aeb-a242-2c361e0df2e6",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/178eed8a-a1a4-460c-99b2-c8dba221b748"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e2accb58-4c5f-4765-990d-a4ca1aeb2f55",
"title" : "er-test-1762"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d639a7e6-d25e-4aeb-a242-2c361e0df2e6"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5686f5d7-d344-43bb-9840-b1c2a9aad58e",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/d639a7e6-d25e-4aeb-a242-2c361e0df2e6",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "e4b9c9fc-9cac-47ca-89f8-dce0c03164ea",
"hostId" : "bf591b35-ca47-465c-997a-89ca7ec86505",
"ownerIdentityId" : "adfd69e3-7d16-46ad-aad6-e8a3f3ff8d56",
"createdBy" : "adfd69e3-7d16-46ad-aad6-e8a3f3ff8d56",
"createdAt" : "2024-09-02T06:39:44.488840Z",
"updatedAt" : "2024-09-02T06:39:44.488840Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1433",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1432",
"productVersion" : "7.3.36",
"networkId" : "622e19f9-86fb-43e8-8ef4-072879597dd6",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bf591b35-ca47-465c-997a-89ca7ec86505"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e4b9c9fc-9cac-47ca-89f8-dce0c03164ea",
"title" : "er-test-1432"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/622e19f9-86fb-43e8-8ef4-072879597dd6",
"profile" : "parent"
}
}
}, {
"id" : "e595a3bc-8714-4f7a-9d1d-8b1e76bdb593",
"hostId" : "e747e220-e882-4cb0-a84a-7e103011a6c8",
"ownerIdentityId" : "8ae8b973-5d48-45ab-b676-7f6cd4678cc5",
"createdBy" : "8ae8b973-5d48-45ab-b676-7f6cd4678cc5",
"createdAt" : "2024-09-02T06:39:48.625504Z",
"updatedAt" : "2024-09-02T06:39:48.663019Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "AIBQwX7sMhgCzEshd2C5r",
"domainName" : "e595a3bc-8714-4f7a-9d1d-8b1e76bdb593.fake.netfoundry.io",
"alternateDomainName" : null,
"name" : "Test edge router FQ7S5R8h7xg8sTnV7cfZX",
"productVersion" : "7.3.36",
"networkId" : "196603f0-4421-46f8-b545-da71b85c01da",
"jwt" : "abcJWT",
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : true,
"online" : false,
"verified" : false,
"status" : "ERROR",
"softwareDeploymentStateId" : "2d311a5b-747a-4b0c-9a0b-db21a2165a05",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "medium",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e747e220-e882-4cb0-a84a-7e103011a6c8"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e595a3bc-8714-4f7a-9d1d-8b1e76bdb593",
"title" : "Test edge router FQ7S5R8h7xg8sTnV7cfZX"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/2d311a5b-747a-4b0c-9a0b-db21a2165a05"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/196603f0-4421-46f8-b545-da71b85c01da",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/2d311a5b-747a-4b0c-9a0b-db21a2165a05",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "e6587460-0b28-49c8-b42a-603167b01e38",
"hostId" : "db985dc1-39a9-433e-abaf-eb715778256c",
"ownerIdentityId" : "87760f3a-a7cb-4d8b-80a5-589681fc5497",
"createdBy" : "87760f3a-a7cb-4d8b-80a5-589681fc5497",
"createdAt" : "2024-09-02T06:39:50.880510Z",
"updatedAt" : "2024-09-02T06:39:50.880510Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2106",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2105",
"productVersion" : "7.3.36",
"networkId" : "9a452844-60ff-449d-a84e-ec5d3d29c17a",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/db985dc1-39a9-433e-abaf-eb715778256c"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e6587460-0b28-49c8-b42a-603167b01e38",
"title" : "er-test-2105"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9a452844-60ff-449d-a84e-ec5d3d29c17a",
"profile" : "parent"
}
}
}, {
"id" : "e73ab00e-730f-47d9-bb4b-3a45dcdd968d",
"hostId" : "e558a38c-a4d2-44d8-8dea-92908ad8895b",
"ownerIdentityId" : "fc81ab36-bfaf-40de-b0b1-c4b59a50fa88",
"createdBy" : "fc81ab36-bfaf-40de-b0b1-c4b59a50fa88",
"createdAt" : "2024-09-02T06:39:51.011824Z",
"updatedAt" : "2024-09-02T06:39:51.011824Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2144",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2143",
"productVersion" : "7.3.36",
"networkId" : "9dab7d4d-c8b3-432c-a266-481f12bdc10e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e558a38c-a4d2-44d8-8dea-92908ad8895b"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e73ab00e-730f-47d9-bb4b-3a45dcdd968d",
"title" : "er-test-2143"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9dab7d4d-c8b3-432c-a266-481f12bdc10e",
"profile" : "parent"
}
}
}, {
"id" : "e76607d6-8001-42e0-89f5-eda8df488d4b",
"hostId" : "d4d96d13-2c75-45a3-85d1-160f0bd23cd2",
"ownerIdentityId" : "cda1b111-b029-4a94-9603-8287e88547dc",
"createdBy" : "cda1b111-b029-4a94-9603-8287e88547dc",
"createdAt" : "2024-09-02T06:39:46.086997Z",
"updatedAt" : "2024-09-02T06:39:46.086997Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1638",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1637",
"productVersion" : "7.3.36",
"networkId" : "bf081c77-f10b-4934-b9b6-6c0763ba4e48",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d4d96d13-2c75-45a3-85d1-160f0bd23cd2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e76607d6-8001-42e0-89f5-eda8df488d4b",
"title" : "er-test-1637"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bf081c77-f10b-4934-b9b6-6c0763ba4e48",
"profile" : "parent"
}
}
}, {
"id" : "e7e45c5c-4fc5-4d2f-b176-bf6fdadf8b2c",
"hostId" : "9b5e7c05-c816-4fda-9374-f09c9473bbae",
"ownerIdentityId" : "dbef15bf-0372-4608-b7ff-e5c01e4cd3ef",
"createdBy" : "dbef15bf-0372-4608-b7ff-e5c01e4cd3ef",
"createdAt" : "2024-09-02T06:39:50.760175Z",
"updatedAt" : "2024-09-02T06:39:50.760175Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2057",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2056",
"productVersion" : "7.3.36",
"networkId" : "88e1f54f-0062-4afb-89b1-00a9d0c5b078",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9b5e7c05-c816-4fda-9374-f09c9473bbae"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e7e45c5c-4fc5-4d2f-b176-bf6fdadf8b2c",
"title" : "er-test-2056"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/88e1f54f-0062-4afb-89b1-00a9d0c5b078",
"profile" : "parent"
}
}
}, {
"id" : "e9f4c28c-61fd-44cc-ba10-a58f78b80a68",
"hostId" : "911e4c2d-b3cf-4505-9c43-f364b58de761",
"ownerIdentityId" : "04cccc1e-6d2e-447d-80e5-8d0fb92a8908",
"createdBy" : "04cccc1e-6d2e-447d-80e5-8d0fb92a8908",
"createdAt" : "2024-09-02T06:39:44.685762Z",
"updatedAt" : "2024-09-02T06:39:44.685762Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1468",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1467",
"productVersion" : "7.3.36",
"networkId" : "03f43471-4f06-4be6-8fd2-8faf5f1b2190",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/911e4c2d-b3cf-4505-9c43-f364b58de761"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e9f4c28c-61fd-44cc-ba10-a58f78b80a68",
"title" : "er-test-1467"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/03f43471-4f06-4be6-8fd2-8faf5f1b2190",
"profile" : "parent"
}
}
}, {
"id" : "eb2361cc-0ac3-4240-8697-27eab8a8ddf0",
"hostId" : "f854531b-d3c5-43d3-bfbe-ff876080882f",
"ownerIdentityId" : "9a821435-a89d-4955-8763-80f6b43652c6",
"createdBy" : "9a821435-a89d-4955-8763-80f6b43652c6",
"createdAt" : "2024-09-02T06:39:44.682926Z",
"updatedAt" : "2024-09-02T06:39:44.688922Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1462",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1461",
"productVersion" : "7.3.36",
"networkId" : "03f43471-4f06-4be6-8fd2-8faf5f1b2190",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "c06081cc-8df4-4eed-bfe9-ffdf7b54503c",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f854531b-d3c5-43d3-bfbe-ff876080882f"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/eb2361cc-0ac3-4240-8697-27eab8a8ddf0",
"title" : "er-test-1461"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/c06081cc-8df4-4eed-bfe9-ffdf7b54503c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/03f43471-4f06-4be6-8fd2-8faf5f1b2190",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/c06081cc-8df4-4eed-bfe9-ffdf7b54503c",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "ee9cca2f-54b3-48fa-8fab-1a27796a2a37",
"hostId" : "46b585d1-d304-4d24-bbd9-ab36b61328a2",
"ownerIdentityId" : "7812f01a-c30f-44a5-9fbe-53464d87c115",
"createdBy" : "7812f01a-c30f-44a5-9fbe-53464d87c115",
"createdAt" : "2024-09-02T06:39:50.232815Z",
"updatedAt" : "2024-09-02T06:39:50.232815Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1855",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1854",
"productVersion" : "7.3.36",
"networkId" : "c5d06642-677d-4226-81da-f40b58875302",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/46b585d1-d304-4d24-bbd9-ab36b61328a2"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ee9cca2f-54b3-48fa-8fab-1a27796a2a37",
"title" : "er-test-1854"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c5d06642-677d-4226-81da-f40b58875302",
"profile" : "parent"
}
}
}, {
"id" : "eec4aadb-9c37-4f60-98e8-6f1ad4c32a97",
"hostId" : "9d4eec67-e56e-481c-b093-2af773cc65fd",
"ownerIdentityId" : "84d08349-3669-4ff4-8e24-a0c29567c4e3",
"createdBy" : "84d08349-3669-4ff4-8e24-a0c29567c4e3",
"createdAt" : "2024-09-02T06:39:50.714998Z",
"updatedAt" : "2024-09-02T06:39:50.724742Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "l8HfjwZXJO3TXppMC8bbj",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Test edge router 1725259190",
"productVersion" : "7.3.36",
"networkId" : "69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONING",
"softwareDeploymentStateId" : "0cac7d10-a73c-4f65-acd4-10344bd20abb",
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9d4eec67-e56e-481c-b093-2af773cc65fd"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/eec4aadb-9c37-4f60-98e8-6f1ad4c32a97",
"title" : "Test edge router 1725259190"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/0cac7d10-a73c-4f65-acd4-10344bd20abb"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/69ba78f0-e1ce-4129-a0ca-1df22fcc48fb",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/0cac7d10-a73c-4f65-acd4-10344bd20abb",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "ef803e6c-49d9-49d8-bdbd-5bb60142e88f",
"hostId" : "2c942095-ae5c-4e3b-acb1-7cb514665da1",
"ownerIdentityId" : "fb1e04d5-7849-4501-9c6e-e16cfcd718df",
"createdBy" : "fb1e04d5-7849-4501-9c6e-e16cfcd718df",
"createdAt" : "2024-09-02T06:39:44.060586Z",
"updatedAt" : "2024-09-02T06:39:44.060586Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1373",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1372",
"productVersion" : "7.3.36",
"networkId" : "5fb41378-a560-454c-a43b-564bdc86898c",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2c942095-ae5c-4e3b-acb1-7cb514665da1"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ef803e6c-49d9-49d8-bdbd-5bb60142e88f",
"title" : "er-test-1372"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5fb41378-a560-454c-a43b-564bdc86898c",
"profile" : "parent"
}
}
}, {
"id" : "f0ab2dec-4d17-4651-bb50-9067eeb5ce28",
"hostId" : "afea9743-86e3-4baf-8632-014ea11a7aed",
"ownerIdentityId" : "00a33b79-cafb-4203-bdb4-d761b61cc8a7",
"createdBy" : "00a33b79-cafb-4203-bdb4-d761b61cc8a7",
"createdAt" : "2024-09-02T06:39:45.497729Z",
"updatedAt" : "2024-09-02T06:39:45.497729Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1546",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1545",
"productVersion" : "7.3.36",
"networkId" : "9566f244-bb22-48f6-be84-a53b7b641ba1",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/afea9743-86e3-4baf-8632-014ea11a7aed"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f0ab2dec-4d17-4651-bb50-9067eeb5ce28",
"title" : "er-test-1545"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9566f244-bb22-48f6-be84-a53b7b641ba1",
"profile" : "parent"
}
}
}, {
"id" : "f261319d-9606-48c4-a8c3-a33488e70f3f",
"hostId" : "c26ae44d-c21c-4b52-b380-03de676d8215",
"ownerIdentityId" : "13941a39-9be1-4ed0-b942-ac15bdd5a1ea",
"createdBy" : "13941a39-9be1-4ed0-b942-ac15bdd5a1ea",
"createdAt" : "2024-09-02T06:39:46.292216Z",
"updatedAt" : "2024-09-02T06:39:46.292216Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1685",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1684",
"productVersion" : "7.3.36",
"networkId" : "b726ebb8-41b8-4a4b-ab1b-43e6732c582e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c26ae44d-c21c-4b52-b380-03de676d8215"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f261319d-9606-48c4-a8c3-a33488e70f3f",
"title" : "er-test-1684"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b726ebb8-41b8-4a4b-ab1b-43e6732c582e",
"profile" : "parent"
}
}
}, {
"id" : "f3608e0e-6242-4bdf-8b55-d91b17a201f7",
"hostId" : "208e4d02-318d-40d9-9cbd-ddfcafe8eb3d",
"ownerIdentityId" : "d4bfcf7d-7fdf-4e24-9bd5-94a07141fd10",
"createdBy" : "d4bfcf7d-7fdf-4e24-9bd5-94a07141fd10",
"createdAt" : "2024-09-02T06:39:50.234368Z",
"updatedAt" : "2024-09-02T06:39:50.234368Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1858",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1857",
"productVersion" : "7.3.36",
"networkId" : "c5d06642-677d-4226-81da-f40b58875302",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/208e4d02-318d-40d9-9cbd-ddfcafe8eb3d"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f3608e0e-6242-4bdf-8b55-d91b17a201f7",
"title" : "er-test-1857"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c5d06642-677d-4226-81da-f40b58875302",
"profile" : "parent"
}
}
}, {
"id" : "f4211943-05b8-4c8d-a129-cd20aeb67993",
"hostId" : "17c11411-da7a-4c98-869d-b5c8b3574cdd",
"ownerIdentityId" : "373f35e6-69dd-41ff-9ea6-6bf1cd562459",
"createdBy" : "373f35e6-69dd-41ff-9ea6-6bf1cd562459",
"createdAt" : "2024-09-02T06:39:44.611695Z",
"updatedAt" : "2024-09-02T06:39:44.611695Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1446",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1445",
"productVersion" : "7.3.36",
"networkId" : "c34d9920-c65e-4fac-9c3a-669d3deb5071",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/17c11411-da7a-4c98-869d-b5c8b3574cdd"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f4211943-05b8-4c8d-a129-cd20aeb67993",
"title" : "er-test-1445"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c34d9920-c65e-4fac-9c3a-669d3deb5071",
"profile" : "parent"
}
}
}, {
"id" : "f5eac193-bc7d-4746-a8c1-690a26a1d457",
"hostId" : "00735af9-b497-4a61-9b0d-8f88ed678030",
"ownerIdentityId" : "1441dec9-9026-416c-b4c9-1a21244eeb48",
"createdBy" : "1441dec9-9026-416c-b4c9-1a21244eeb48",
"createdAt" : "2024-09-02T06:39:50.294510Z",
"updatedAt" : "2024-09-02T06:39:50.294510Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1880",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1879",
"productVersion" : "7.3.36",
"networkId" : "1d3d9d7d-c538-419d-91c8-c9f8370d886f",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/00735af9-b497-4a61-9b0d-8f88ed678030"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f5eac193-bc7d-4746-a8c1-690a26a1d457",
"title" : "er-test-1879"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1d3d9d7d-c538-419d-91c8-c9f8370d886f",
"profile" : "parent"
}
}
}, {
"id" : "f8b0a9e1-f893-4795-8a0b-f20142df1bae",
"hostId" : "874f751c-a872-46d2-91d3-fc90bb0c7e70",
"ownerIdentityId" : "663cc842-5a4c-41ac-b4d6-52d5fb06e218",
"createdBy" : "663cc842-5a4c-41ac-b4d6-52d5fb06e218",
"createdAt" : "2024-09-02T06:39:46.349279Z",
"updatedAt" : "2024-09-02T06:39:46.354040Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1695",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1694",
"productVersion" : "7.3.36",
"networkId" : "9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "ae3c0d83-a778-4b94-86ad-b918a8b79edf",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/874f751c-a872-46d2-91d3-fc90bb0c7e70"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f8b0a9e1-f893-4795-8a0b-f20142df1bae",
"title" : "er-test-1694"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ae3c0d83-a778-4b94-86ad-b918a8b79edf"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9fe26b3c-e0c2-44bf-a0f8-dda7d0b790c1",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ae3c0d83-a778-4b94-86ad-b918a8b79edf",
"deprecation" : "Use software-deployment-state link instead"
}
}
}, {
"id" : "f93a8966-e101-42d4-bad5-c1ec14b00e61",
"hostId" : "4fba683a-345e-4e23-baed-4d3b14c9c540",
"ownerIdentityId" : "19c8e8c9-81ce-4f2d-9323-fe91b913d450",
"createdBy" : "19c8e8c9-81ce-4f2d-9323-fe91b913d450",
"createdAt" : "2024-09-02T06:39:46.046710Z",
"updatedAt" : "2024-09-02T06:39:46.046710Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1616",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1615",
"productVersion" : "7.3.36",
"networkId" : "3bb6ff55-4978-4402-b059-7b27bd1fee55",
"jwt" : "fake-jwt",
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4fba683a-345e-4e23-baed-4d3b14c9c540"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f93a8966-e101-42d4-bad5-c1ec14b00e61",
"title" : "er-test-1615"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3bb6ff55-4978-4402-b059-7b27bd1fee55",
"profile" : "parent"
}
}
}, {
"id" : "fcb26377-2fff-4306-99fd-a8c27826d2b0",
"hostId" : "960b8274-9f8d-41af-b507-09ec129fe6c1",
"ownerIdentityId" : "34e20562-a781-4ca1-98c4-3d7bfbf96455",
"createdBy" : "34e20562-a781-4ca1-98c4-3d7bfbf96455",
"createdAt" : "2024-09-02T06:39:46.833918Z",
"updatedAt" : "2024-09-02T06:39:46.833918Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1785",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1784",
"productVersion" : "7.3.36",
"networkId" : "010e5673-5926-4fdc-b011-f84a62d707f5",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/960b8274-9f8d-41af-b507-09ec129fe6c1"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fcb26377-2fff-4306-99fd-a8c27826d2b0",
"title" : "er-test-1784"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/010e5673-5926-4fdc-b011-f84a62d707f5",
"profile" : "parent"
}
}
}, {
"id" : "fe75b3f9-6ea3-466e-876f-6250034fde67",
"hostId" : "01974ff4-0da4-4e44-b3f5-dd54267ab0cd",
"ownerIdentityId" : "d4a49038-e4b2-443e-b4b2-e9ed97fa5c4f",
"createdBy" : "d4a49038-e4b2-443e-b4b2-e9ed97fa5c4f",
"createdAt" : "2024-09-02T06:39:50.814702Z",
"updatedAt" : "2024-09-02T06:39:50.814702Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2081",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2080",
"productVersion" : "7.3.36",
"networkId" : "0d9b2af3-b956-4f8e-87a7-76cd20637535",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/01974ff4-0da4-4e44-b3f5-dd54267ab0cd"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fe75b3f9-6ea3-466e-876f-6250034fde67",
"title" : "er-test-2080"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0d9b2af3-b956-4f8e-87a7-76cd20637535",
"profile" : "parent"
}
}
}, {
"id" : "ff930dc2-b1fe-4e5b-b2da-90ecf4334030",
"hostId" : "66d9a8da-e3dd-4f50-a7f0-ab0b71bd330b",
"ownerIdentityId" : "0b415cc9-e583-41a4-a2ec-887ae2c4f2a5",
"createdBy" : "0b415cc9-e583-41a4-a2ec-887ae2c4f2a5",
"createdAt" : "2024-09-02T06:39:50.383895Z",
"updatedAt" : "2024-09-02T06:39:50.383895Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1924",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1923",
"productVersion" : "7.3.36",
"networkId" : "a0813f49-88d8-4554-961d-90d60e1e6153",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/66d9a8da-e3dd-4f50-a7f0-ab0b71bd330b"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ff930dc2-b1fe-4e5b-b2da-90ecf4334030",
"title" : "er-test-1923"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a0813f49-88d8-4554-961d-90d60e1e6153",
"profile" : "parent"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers"
}
},
"page" : {
"size" : 3500,
"totalElements" : 164,
"totalPages" : 1,
"number" : 0
}
}
Get Edge Router
GET /v2/edge-routers/{id}
Authorization
This endpoint requires read
action on the edge-router
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers/2de1f37d-b057-4637-858f-bd68ed65b4b2' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJEdE1uSW1pVFNJM0VYNWotTjB5MGFRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjFkNDY0OWZhLWJmYjAtNDZmMS05ZmMzLWZlMWIxNjVjYTNlYiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTE5MiwiZXhwIjoxNzI1MjYyNzkyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRhNTlmY2RlLTdkMzktNDZmMy1iYjQxLWE1MmEzYzg4NmY2MFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTE5Mn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.bTwx0NThwFYfYs66lBouwxGtxtTQN5Mw9R7iPdw9JBM0SCi8vpBpeO7b6CJ7LeX9-NG73225wX993nnfO0RNFpn0vdkuPUTkKfu49vy3r2CbCYS6aKI2K7tzcPrFNMxk78OTIltfRFcaAy33ImzDGiYE13AS4YjkY2SUpVcUHvR450Fdm8BCEwSZ2ajefZGckA2coUukEIGRzi0IPJx7od_8dssj6Oe_XBUg4peQ3-ym9jPK7XDgltewBVqTXH2bmJ9F0xJOBgsZiK0F1D0w622_VwrcbgZq0Y0l1SCQ8QqnzsSTk5fMZSj5I1zMJz_I7qJWL4jkByz6yeU0Kinoog'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1809
{
"id" : "2de1f37d-b057-4637-858f-bd68ed65b4b2",
"hostId" : "74fc0256-892d-4ab7-8a15-8093d9906cfd",
"ownerIdentityId" : "eeefaec9-a8cb-443d-b837-08a7bf8a718b",
"createdBy" : "eeefaec9-a8cb-443d-b837-08a7bf8a718b",
"createdAt" : "2024-09-02T06:39:52.653954Z",
"updatedAt" : "2024-09-02T06:39:52.658975Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2192",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-2191",
"productVersion" : "7.3.36",
"networkId" : "5c2d30d1-a348-4899-a4da-c1761b4b81bd",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "717d8789-d3c1-449c-8406-145363e9a3fc",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/74fc0256-892d-4ab7-8a15-8093d9906cfd"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2de1f37d-b057-4637-858f-bd68ed65b4b2",
"title" : "er-test-2191"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/717d8789-d3c1-449c-8406-145363e9a3fc"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5c2d30d1-a348-4899-a4da-c1761b4b81bd",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/717d8789-d3c1-449c-8406-145363e9a3fc",
"deprecation" : "Use software-deployment-state link instead"
}
}
}
Create Edge Router
POST /v2/edge-routers
Authorization
This endpoint requires create
action on the edge-router
resource type.
Path parameters
No parameters.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
networkId |
String |
true |
|
zitiId |
String |
true |
|
provider |
String |
true |
Must be one of [AWS, AZURE, GCP, ALICLOUD, NETFOUNDRY, OCI, OCP, CUSTOMER]. |
region |
String |
true |
|
hostSize |
String |
true |
|
linkListener |
Boolean |
true |
|
wssListener |
Boolean |
true |
|
tunnelerEnabled |
Boolean |
true |
|
noTraversal |
Boolean |
true |
|
enabled |
Boolean |
true |
|
alternateDomainName |
String |
true |
|
attributes |
Array[String] |
true |
|
endpointAttributes |
Array[String] |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers' -i -X POST \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIwYjZ6dEw5MndhMk9YaWF6ZDhPSURBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQ1MDI4ODcwLWIyOTMtNDg0Yi1iZTVhLTJiMTQ2ZTI3YWQyZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTE4NiwiZXhwIjoxNzI1MjYyNzg2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjJiNDAyOWY1LWE3MTMtNDBmYy05MmM4LTc1ZDYzZWMwZDk3ZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTE4Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.XuYlg55e4rMoyTwjVm__6-pCAarP3UnAKtRxKXt3ro58I9r2KFyYJLQ0xR9e098YdaDSPKMoWrxUq0QZyqExtKuqZBqhxye_qR8bfy9s8gwfeDQjVqox8tDePmIydnya6AunxShUmyNTAzEm26NuMwlBr4mWKgAiu0xlyT8VKLrzsdMway4nVRgbWRMWBP8_AyE-bLC6_X8xMpdZByuPMQJ7YPeLZqnfNAIYEyeCSBZr8tiRCPOvK18yCOWhCgcqslny9_BciuE7S66eI_tHoJX6qpUm_LsTes9Wvdk5v9XZPe6FhTfnbLfnkZnioz2gzpa7lsJQjnj2nHmsNu0Fhw' \
-d '{"name":"Test edge router 1725259186","networkId":"8ba2f1ae-4e37-4346-ba1a-298587bf57e8","provider":"AWS","region":"us-east-1","tunnelerEnabled":null,"noTraversal":null,"attributes":[]}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1657
{
"id" : "84d92911-cd53-4fda-9fa2-81d65bc09015",
"hostId" : null,
"ownerIdentityId" : "45028870-b293-484b-be5a-2b146e27ad2f",
"createdBy" : "45028870-b293-484b-be5a-2b146e27ad2f",
"createdAt" : "2024-09-02T06:39:46.960402Z",
"updatedAt" : "2024-09-02T06:39:46.962990Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : null,
"domainName" : null,
"alternateDomainName" : null,
"name" : "Test edge router 1725259186",
"productVersion" : "7.3.36",
"networkId" : "8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"jwt" : null,
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONING",
"softwareDeploymentStateId" : "f3128861-a88b-4390-b7cd-6f015c8b6531",
"provider" : null,
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/84d92911-cd53-4fda-9fa2-81d65bc09015",
"title" : "Test edge router 1725259186"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f3128861-a88b-4390-b7cd-6f015c8b6531"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ba2f1ae-4e37-4346-ba1a-298587bf57e8",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f3128861-a88b-4390-b7cd-6f015c8b6531",
"deprecation" : "Use software-deployment-state link instead"
}
}
}
Partial Update Edge Router
PATCH /v2/edge-routers/{id}
Authorization
This endpoint requires update
action on the edge-router
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
noTraversal |
Boolean |
true |
|
linkListener |
Boolean |
true |
|
enabled |
Boolean |
true |
|
attributes |
Array[String] |
true |
|
empty |
Boolean |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers/6f971191-a401-40b7-a5f0-0a8899aba7b2' -i -X PATCH \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ1QUQtR0o5UUF0TjVtZHE0WXFRMFRBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjYyNWJlM2RjLWU2OTQtNDMyZi04MmE3LTdmYTg5Y2YyOGFmNSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTE5MiwiZXhwIjoxNzI1MjYyNzkyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjZhZDdhZmE3LWQ4NDAtNDc4My1hNDUwLTI1MmM4NTgyN2UyOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTE5Mn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.d7nY1x_zdnwGJLIHLtXExBcnGYAEjealgalqcbw9rHAUXKZ1EYaw9X7lO5aKAM0pOAG_0_lz8EKMNg7E7bSHLjjJODhU18Lgr4hnAUEnz0xHwyKayPU45VHvVS4Nvi-B5VNz4JzNqemCvM3kKJp5EQA1Y2M1og--eBfZz589JsTbSACGn4ULj7TJ4iIeTs5zLXSsUXI8u8Jo-LJBIgsIg9YtFCJUchpXVPrA4El2bNgvmPP5Ex7dJhjdnE8ZEXDBAogkU1eUdkRWGYCOhh3Wados2z2aNux3xq4twvzUc1FJKZM-L5vbcvM_B-f9PVSqSVQHIcKOJ4bJYH6geaB9mw' \
-d '{"name":"Updated name","noTraversal":null,"enabled":null,"empty":false}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1809
{
"id" : "6f971191-a401-40b7-a5f0-0a8899aba7b2",
"hostId" : "b999f6b9-3525-46b8-848d-ebf9d80e1b7a",
"ownerIdentityId" : "e1a6d9c7-be72-40a3-ab66-0ce936a9d56b",
"createdBy" : "e1a6d9c7-be72-40a3-ab66-0ce936a9d56b",
"createdAt" : "2024-09-02T06:39:52.448156Z",
"updatedAt" : "2024-09-02T06:39:52.486124Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-2173",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Updated name",
"productVersion" : "7.3.36",
"networkId" : "190375d6-5028-424b-91c8-e2ed6c7e96eb",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "1478a9d1-69c0-4898-ab3b-910ee3c79d71",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b999f6b9-3525-46b8-848d-ebf9d80e1b7a"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6f971191-a401-40b7-a5f0-0a8899aba7b2",
"title" : "Updated name"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/1478a9d1-69c0-4898-ab3b-910ee3c79d71"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/190375d6-5028-424b-91c8-e2ed6c7e96eb",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/1478a9d1-69c0-4898-ab3b-910ee3c79d71",
"deprecation" : "Use software-deployment-state link instead"
}
}
}
Delete Edge Router
DELETE /v2/edge-routers/{id}
Authorization
This endpoint requires delete
action on the edge-router
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers/0a1cdca3-6e19-4ad2-bf26-a7671b621816' -i -X DELETE \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJtSlFrckJxRDBPZ1NBX3lTMkpyZm13IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjYxYzlkYTA5LTFkYjktNDhhOC1hZjJmLTkzZTBlMTVlYTk3YSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTE5MCwiZXhwIjoxNzI1MjYyNzkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjIwZjAxNTBiLTA0N2EtNDRiNC1hNmMzLTc5Mjk4ODkzN2EzY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTE5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.EpmGXcp6xnGZcPukKg_Lb2ouhbRbULY1bXj5i3H7CKjfY_Hr0f1VnQ6bBtofNhsSEWO2r2S8napc7eiO4Nsu2msiiQws-8zWvS1p3qdSZeamYrVtxhPqDL5is-2M81X5Gzm3ksc32KSo_Kgz6SvMsDprP3pLygYETVXccZj5rFAF5q3opev5TITxnHaicDrJS3s3i49u7VlXW6m07kaQiGC_v6T-bMEfTP6PvYA6KWN3dPCnAhS5VGVMRaKl4mQ3ftux7OC8mEbcF0lyV2atKDzJZMx-8itE2iMFW5xZE9pED_ug8uhmhp-XKsWYrxcUUBW0SEO3UcTKCp8Qo2jD3w'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1394
{
"id" : "0a1cdca3-6e19-4ad2-bf26-a7671b621816",
"hostId" : "328c490c-6208-4240-b1ba-dbdcce765032",
"ownerIdentityId" : "f04bd856-9ee8-450a-9006-c99109bd0d07",
"createdBy" : "f04bd856-9ee8-450a-9006-c99109bd0d07",
"createdAt" : "2024-09-02T06:39:50.547185Z",
"updatedAt" : "2024-09-02T06:39:50.565768Z",
"deletedBy" : "61c9da09-1db9-48a8-af2f-93e0e15ea97a",
"deletedAt" : null,
"zitiId" : "ziti-id-1994",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1993",
"productVersion" : "7.3.36",
"networkId" : "6061dc2b-5cc2-4553-8424-81188915bca2",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "DELETING",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/328c490c-6208-4240-b1ba-dbdcce765032"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0a1cdca3-6e19-4ad2-bf26-a7671b621816",
"title" : "er-test-1993"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6061dc2b-5cc2-4553-8424-81188915bca2",
"profile" : "parent"
}
}
}
Sync Edge Router
PATCH /v2/edge-routers/{id}/sync
Authorization
This endpoint requires update
action on the edge-router
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-routers/9529a9c2-43fa-4312-ae0b-1ed64d94d9b8/sync' -i -X PATCH \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJMRmt4bmJZbE1XR1pkVll0OEM3alZnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImM3NjE0ZDAwLTc3YzktNGVhZC1iNzBhLTc3YTBkYWI3YzVhNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTE5MCwiZXhwIjoxNzI1MjYyNzkwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjMwMTJlNGY5LWQzNjktNGE2OS1hMzE1LTE3MDE1NTRiYjc4YVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTE5MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.BThWWuFqo4wIgNv_13JQC5f46LvQUVt6uY7zaX339KtoWu7DoOdJ0G7wD2M-2mUnimWHKNIfsllzwPPJBFYLRgF3S8KzUxBcCX7jpxrbIcfwc9PrVlleb1JG0KUzUbYe4Zq9EjxBjFbIjxaUezamdWVNbuirdKzK-FcbS_aCuxPq6J9DTgZyUsj4CYepaJ5Bs46q4fd_PcDX2o_SFnq3Yh6YFBdEztYiRMj97qyzPwbzW46BEOKEBe09KId_Xnr3yUJMu91PDEqhcz9lnKFqcLYamHI2u2aHeOvt7Acbsd44pLoyl4m1hwUkzOJRmd5EDWrlRkBn_36OTAxq1_oY-Q'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1570
{
"id" : "9529a9c2-43fa-4312-ae0b-1ed64d94d9b8",
"hostId" : "945e40c3-f212-4b19-a399-ed942c93c5b8",
"ownerIdentityId" : "1d955f86-4c4c-4b76-8f12-20454eb8ab1c",
"createdBy" : "1d955f86-4c4c-4b76-8f12-20454eb8ab1c",
"createdAt" : "2024-09-02T06:39:50.380467Z",
"updatedAt" : "2024-09-02T06:39:50.393561Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1915",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1914",
"productVersion" : "7.3.36",
"networkId" : "a0813f49-88d8-4554-961d-90d60e1e6153",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : true,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "ad042dd8-2a54-468b-9536-45a8efacee2e",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/945e40c3-f212-4b19-a399-ed942c93c5b8"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9529a9c2-43fa-4312-ae0b-1ed64d94d9b8",
"title" : "er-test-1914"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ad042dd8-2a54-468b-9536-45a8efacee2e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a0813f49-88d8-4554-961d-90d60e1e6153",
"profile" : "parent"
}
}
}
Edge Router Policies
Find Edge Router Policies
GET /v2/edge-router-policies
Authorization
This endpoint requires read
action on the edge-router-policy
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
networkId |
String |
true |
|
zitiId |
String |
true |
|
name |
String |
true |
|
isSystem |
Boolean |
true |
|
semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
endpointAttributes |
Array[String] |
true |
|
edgeRouterAttributes |
Array[String] |
true |
|
exclusiveType |
String |
true |
Must be one of [app-wan, endpoint, service, edge-router, edge-router-policy, certificate-authority, posture-check, service-edge-router-policy]. |
exclusiveToId |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJRUlU2V2NqWUZ2Z1RMX0xsalhDdUZRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjlmOWE2ZWNjLTk4ODktNDEzYi1iOTdkLTI2MTkzMzUxNzMwOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIxNywiZXhwIjoxNzI1MjYyODE3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImEwYTMzNmM1LWJlNjYtNGU5ZS04NmY0LTQ4NTFkMzI0NTYwOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIxN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.sB3J7HkRSnk9ba6d2AYTHJQ8g7zmVIOT06D0WE2OtuuIfMR6e12QNCm13nvOdt7omSppLdNpcZ5xjyi1SFZpbRKXrHALT7rcDNijCQ__YtTFKLPuloKgoPXY6wHEJoZ5oJxW-bJ-yTwBmPEpH1zHG7zQNmsuizxFqLUan87JHKMYjOjxftYD6Jv9ol4zb_7NWfYRoYwf4JJE7qzZanY45uuPD0YjKO-O9ZvQtC0CMx1W5iJKrXQlb0hxsHjy3jS2SwGJgNQ8CkmT3CEO75A6St_HRSY9J_MBAdafdovMr1Y17u5Y8BwTlZQKuB1f2pltGbPNxpj3jz4F1_0NiAdN3g'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2444
{
"_embedded" : {
"edgeRouterPolicyList" : [ {
"id" : "513a5e31-a57f-46bb-a45a-5c3026b77573",
"networkId" : "f21b072a-f0f8-4613-a83f-a255649b77c7",
"zitiId" : "be1a6721-1315-49ff-8068-2b5f768d5246",
"name" : "5UoXttEJvbqDR1ezIFzxU",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"exclusiveToId" : null,
"ownerIdentityId" : "32992a69-8212-4e87-b6d5-87dbb670ab04",
"createdBy" : "32992a69-8212-4e87-b6d5-87dbb670ab04",
"createdAt" : "2024-09-02T06:40:17.143494Z",
"updatedAt" : "2024-09-02T06:40:17.143494Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/513a5e31-a57f-46bb-a45a-5c3026b77573",
"title" : "5UoXttEJvbqDR1ezIFzxU"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f21b072a-f0f8-4613-a83f-a255649b77c7",
"profile" : "parent"
}
}
}, {
"id" : "c31862b2-40fb-4e76-90b0-b253ab8db865",
"networkId" : "aff46cbf-a2c2-4b8c-8b74-4a86e9d02775",
"zitiId" : "aa395b18-79cc-48fa-875f-357d51ec1ff7",
"name" : "erp-720",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"exclusiveToId" : null,
"ownerIdentityId" : "130c3471-59e4-4e0b-9e55-a5534df458cd",
"createdBy" : "130c3471-59e4-4e0b-9e55-a5534df458cd",
"createdAt" : "2024-09-02T06:39:00.096901Z",
"updatedAt" : "2024-09-02T06:39:00.096901Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/c31862b2-40fb-4e76-90b0-b253ab8db865",
"title" : "erp-720"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/aff46cbf-a2c2-4b8c-8b74-4a86e9d02775",
"profile" : "parent"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies"
}
},
"page" : {
"size" : 3500,
"totalElements" : 2,
"totalPages" : 1,
"number" : 0
}
}
Get Edge Router Policy
GET /v2/edge-router-policies/{id}
Authorization
This endpoint requires read
action on the edge-router-policy
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies/333c0bc9-a15c-4ba0-a157-c9621b0cd679' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxS0NMWXJoRGtDNmJFaEE3NTVPSElnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImY2MDg5NDlkLWM4NWQtNDhkZS1hOGZkLTY2OWRiZDBmODdiOCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIxNywiZXhwIjoxNzI1MjYyODE3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjgyY2IwNDJhLTM1YWEtNGQ4Yi1iYTI5LWM3M2QxNmY4NDNmNVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIxN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.YPu3sjcN2L4L-lo6z4EZx91Wieiu3_Jtvn-28AHkfAlY0_BwSojm0BU3eyybNWDOJvibMR972NRdYg5Xe5IJMYrKp6PedVf-hbtPu6DrIGxZXUZZXNv6sdPlyN3NIdW9LPc7rf5MFOQ_egEB2FE-_WmaUKXAX_phLIpP0bUQB78qNeW7Cuiv7zvXdSU-H54QTJgl-AuuhQFmIf9AMFIvimXYnE0vtu_LJgz6m54oovP4KrdlBIH1bS4CNHzA67fLIWZ9InhkU53mdUGgEXfrvcvMh9rDlaZEF6Vnky0bKuqRw42b-yOr1b-_7LzISF4nLzhRu45bBLl3TG0QvvOrtw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 957
{
"id" : "333c0bc9-a15c-4ba0-a157-c9621b0cd679",
"networkId" : "1bcacb7f-b2c0-4ebf-973f-527758bd466e",
"zitiId" : "d6b9de2a-84b0-470d-b5ba-06051173185e",
"name" : "erp-2807",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"exclusiveToId" : null,
"ownerIdentityId" : "89c36a5f-4dce-4962-aafe-4c6074287240",
"createdBy" : "89c36a5f-4dce-4962-aafe-4c6074287240",
"createdAt" : "2024-09-02T06:40:17.256383Z",
"updatedAt" : "2024-09-02T06:40:17.256383Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/333c0bc9-a15c-4ba0-a157-c9621b0cd679",
"title" : "erp-2807"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1bcacb7f-b2c0-4ebf-973f-527758bd466e",
"profile" : "parent"
}
}
}
Create Edge Router Policy
POST /v2/edge-router-policies
Authorization
This endpoint requires create
action on the edge-router-policy
resource type.
Path parameters
No parameters.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
networkId |
String |
true |
|
semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
endpointAttributes |
Array[String] |
true |
|
edgeRouterAttributes |
Array[String] |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies' -i -X POST \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJhNzJ3MFdTajVBc0puWWRjSDF5a093IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjZlOGY3YWEwLTNkYmYtNDY1ZS1hZTY4LWE2MGQ5MDQxNGQyZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIxNywiZXhwIjoxNzI1MjYyODE3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImJmYjFlYjM0LTAwOGMtNDcyNy1iMjQyLWQxYmVkZTQyZTk5OFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIxN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.T2bQXNcd_7Y2NJFe5DFQkBa4Pxk1QsmCrB_Eov6HAQyb_OepXGopChDqbXKfQQbi5vAYj1SAzYpMzO5W89jeI0c3Hu-9BsoThLS4SLu5eUFOJRi7ayFAQNnaHyoNlPQ7tsmo-wu0Tj1NQpemoqlgr4asWTzYHRd0McYucDcnSTjD77Vm8uQfJWPgvbUeUCJo1NSZ7VUjtEGzP7mZdEd3582udIV8i3gkUXBwULOlPcIFwt5y-UQeeRSMEkR2695ECrqLdsBes0D16clKTioo09x86TgyPYBaduXVeqhJlJSCJf-dOGrrBv9Nw-kHfV-gjM32nXRaT1V7aFkfnSiWiA' \
-d '{"name":"Test edge router policy 1725259217","networkId":"1bdcd654-5785-452e-853c-cc142bf3aa13","semantic":"AnyOf","endpointAttributes":["#topclients"],"edgeRouterAttributes":["#westrouters"]}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1228
{
"id" : "a9f0be03-01c2-4fed-b127-94d435756e2c",
"networkId" : "1bdcd654-5785-452e-853c-cc142bf3aa13",
"zitiId" : "ziti.id.ufko6mnv",
"name" : "Test edge router policy 1725259217",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ "#topclients" ],
"edgeRouterAttributes" : [ "#westrouters" ],
"exclusiveType" : null,
"exclusiveToId" : null,
"ownerIdentityId" : "6e8f7aa0-3dbf-465e-ae68-a60d90414d2e",
"createdBy" : "6e8f7aa0-3dbf-465e-ae68-a60d90414d2e",
"createdAt" : "2024-09-02T06:40:17.213022Z",
"updatedAt" : "2024-09-02T06:40:17.223644Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/a9f0be03-01c2-4fed-b127-94d435756e2c",
"title" : "Test edge router policy 1725259217"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1bdcd654-5785-452e-853c-cc142bf3aa13",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/0d80c798-d203-490a-94f4-8939bf552a73",
"title" : "Create EdgeRouterPolicy",
"profile" : "meta"
}
}
}
Update Edge Router Policy
PUT /v2/edge-router-policies/{id}
Authorization
This endpoint requires update
action on the edge-router-policy
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
endpointAttributes |
Array[String] |
true |
|
edgeRouterAttributes |
Array[String] |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies/830280ec-57b7-405a-90d4-81a6fd4aa22e' -i -X PUT \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJNSU9qTWpZakNxNHBlLUZlTXBQZWhBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjVhYjBlMmIzLWQ0N2QtNDA2NS05MWYzLTIzZmI2MzY2N2RkNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIxNywiZXhwIjoxNzI1MjYyODE3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRhN2U3Mjg3LWM1MGEtNDEzNi1iZGZkLWMyODFhODY2NTQxNVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIxN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.UsyKKmfuhttgYnnwX1xQB5xefnTow7R9q9TL7LveMadyEvQf9io77hrF3pOt6PIeD0IzjtUfQIGBob4IOVjAMLSOcKDoYyj1jNRjrrnTPK3DW-L-hblZ2JfbanxGz1ObuBufGAZ_SNXMMTRQSZiL9IBdAsRAJ9027FvE5-DIOgiEMmwqB2opFpn8PA9l-tRf3aP9XkJQ8RPXQu-kx43nJob8pEeJrz6ySKfWcz93QJ0tDgbBM3KmepmcU6n5-GN9eRXZDuA90H_52LnKlrw_PoHmfMRizGAH8pm4_bU8mYQKRXjSFL4bPgmJ5GAdCX3cxeMWjHZcLIhrtqFRJ4hclQ' \
-d '{"name":"Updated edge router policy name","semantic":"AnyOf","endpointAttributes":["#topclients"],"edgeRouterAttributes":["#westrouters"]}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1222
{
"id" : "830280ec-57b7-405a-90d4-81a6fd4aa22e",
"networkId" : "84474c3b-a311-4ed8-a110-ef3d1235ffc4",
"zitiId" : "ziti.id.ufp9ehin",
"name" : "Updated edge router policy name",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ "#topclients" ],
"edgeRouterAttributes" : [ "#westrouters" ],
"exclusiveType" : null,
"exclusiveToId" : null,
"ownerIdentityId" : "8b468d7b-a89a-422b-af1f-c1e0fc48959d",
"createdBy" : "8b468d7b-a89a-422b-af1f-c1e0fc48959d",
"createdAt" : "2024-09-02T06:40:17.494103Z",
"updatedAt" : "2024-09-02T06:40:17.527486Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/830280ec-57b7-405a-90d4-81a6fd4aa22e",
"title" : "Updated edge router policy name"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/84474c3b-a311-4ed8-a110-ef3d1235ffc4",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/452c5b57-9ca8-4f6a-b470-7865ae01ba87",
"title" : "Update EdgeRouterPolicy",
"profile" : "meta"
}
}
}
Delete Edge Router Policy
DELETE /v2/edge-router-policies/{id}
Authorization
This endpoint requires delete
action on the edge-router-policy
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies/96be7c54-fb0c-4700-ab21-cad3aee81dd0' -i -X DELETE \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJJMXFtX2gyRGstaU41S1IxaFNiMjRRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjYyOWE3MDIyLWM3MjctNDBhNS1hMGU0LWEyOTBmZTUxYTY4MiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIxNywiZXhwIjoxNzI1MjYyODE3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjEyMTU2YjE5LWMyZTItNGRkMy05MzQ1LWUzMjFkOWNhNDE1MlwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIxN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.KfcvTPLIpwMUFpNJdSXLb484HiIZOS53QTlwxFSwGH_sImHp-x00vP0772yxVFm7EI3pqGjhwmx1tu10wT2zGeN8IGodBovkGJ-VhI4jb5vi7i6rfY0KaA5JqbgoL7WAksRU1PETKZgjJbkFsw0z4h6APqkPv5QETSneZbcUKneqO3Oc99mGcLOlxXl4ooekDpX7D10fDXaHZnl7Ve8M3Cb_msZoVwCWA76C98Y0o1nS6EW71eap2AO_brmGO7R-rV074ZSrBk8o40wYMy1lAbt7HzUd4fFW6iR416A2XvnGsdd9wLi3kQ6MMOU9IvVm1kF7D0KBdNy8KmxylzmaQw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1255
{
"id" : "96be7c54-fb0c-4700-ab21-cad3aee81dd0",
"networkId" : "a282dd45-9ce8-40a7-b809-295c48d292d9",
"zitiId" : "ziti.id.ufna51dc",
"name" : "Test edge router policy 1725259217",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"exclusiveToId" : null,
"ownerIdentityId" : "66670069-51de-413a-aa25-29dcf7d138b0",
"createdBy" : "66670069-51de-413a-aa25-29dcf7d138b0",
"createdAt" : "2024-09-02T06:40:17.374957Z",
"updatedAt" : "2024-09-02T06:40:17.410455Z",
"deletedBy" : "629a7022-c727-40a5-a0e4-a290fe51a682",
"deletedAt" : "2024-09-02T06:40:17.410Z",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/96be7c54-fb0c-4700-ab21-cad3aee81dd0",
"title" : "Test edge router policy 1725259217"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a282dd45-9ce8-40a7-b809-295c48d292d9",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/261e8db7-6426-4e84-8dbf-85c9ee19b333",
"title" : "Delete EdgeRouterPolicy",
"profile" : "meta"
}
}
}
Find Edge Router Policies
GET /v2/edge-router-policies
Authorization
This endpoint requires read
action on the edge-router-policy
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
networkId |
String |
true |
|
zitiId |
String |
true |
|
name |
String |
true |
|
isSystem |
Boolean |
true |
|
semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
endpointAttributes |
Array[String] |
true |
|
edgeRouterAttributes |
Array[String] |
true |
|
exclusiveType |
String |
true |
Must be one of [app-wan, endpoint, service, edge-router, edge-router-policy, certificate-authority, posture-check, service-edge-router-policy]. |
exclusiveToId |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJQbGJ1a3NMeXV5RndDRGE4Uzcwckd3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijc5NzZiZGQ4LWYxMzYtNDYzYy1hZGEyLTk3OTk4OWZiYjI4MCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA4NywiZXhwIjoxNzI1MjYyNjg3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNlYjZlYjFjLWUzZGYtNGRiNi05ZGJhLTAzYzM4N2Q2NDJjZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA4N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.MUhSiyOcZABKi73Luknbbtg4LOL1JAW_UUeOmU86N86PDs27UYr7yUed0HHyln1VT1bD4fN1bD3wm-E758pfj8RXsuK_h8kjq_JJU1I6oJNCsy9MkBKUCWL3JxSqYi7eJGSp1uxRcegr9juRBCvnlZWSQ1vNayeRfNkcJw5Umn_dMgLB1HGbRA4qJ0xKa_K7kEBfHM2amu32Rbn7MOixmDbU-nRhhQ_RVDarXel8KkESSX2UOtUAKUo6MShCjj_ST26oLPshVjsqJ6BfSYyG37sLybNbSS4s65sWePTfu8VAsPXAmiSV8ZTgph0nC5VV4rg-1PVDhAx03MfQnpsvOA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2585
{
"_embedded" : {
"edgeRouterPolicyList" : [ {
"id" : "4e0168ed-7ec2-4678-ae73-a1f33ab5ff5d",
"networkId" : "3b7e7745-2cd0-4c71-8e7f-00ccec071c58",
"zitiId" : "7a22b7cb-888d-47b6-95c7-dfc07a1c075b",
"name" : "Find Test Edge Router Policy 2",
"isSystem" : true,
"semantic" : "AllOf",
"endpointAttributes" : [ "#epAttr1", "#attr3" ],
"edgeRouterAttributes" : [ "#erAttr1" ],
"exclusiveType" : null,
"exclusiveToId" : null,
"ownerIdentityId" : "5a3f96d4-9d5a-4f51-bd23-78e9915c421f",
"createdBy" : "5a3f96d4-9d5a-4f51-bd23-78e9915c421f",
"createdAt" : "2024-09-02T06:38:07.409272Z",
"updatedAt" : "2024-09-02T06:38:07.409272Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/4e0168ed-7ec2-4678-ae73-a1f33ab5ff5d",
"title" : "Find Test Edge Router Policy 2"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3b7e7745-2cd0-4c71-8e7f-00ccec071c58",
"profile" : "parent"
}
}
}, {
"id" : "951b96c0-71b3-4608-8e6b-f528e09a4849",
"networkId" : "3b7e7745-2cd0-4c71-8e7f-00ccec071c58",
"zitiId" : "a3264a9a-d058-4c0e-aac1-693f8ab3dd36",
"name" : "Find Test Edge Router Policy 1",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ "#epAttr2", "#epAttr1" ],
"edgeRouterAttributes" : [ "#erAttr2", "#erAttr1" ],
"exclusiveType" : null,
"exclusiveToId" : null,
"ownerIdentityId" : "5a3f96d4-9d5a-4f51-bd23-78e9915c421f",
"createdBy" : "5a3f96d4-9d5a-4f51-bd23-78e9915c421f",
"createdAt" : "2024-09-02T06:38:07.403013Z",
"updatedAt" : "2024-09-02T06:38:07.403013Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/951b96c0-71b3-4608-8e6b-f528e09a4849",
"title" : "Find Test Edge Router Policy 1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3b7e7745-2cd0-4c71-8e7f-00ccec071c58",
"profile" : "parent"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies"
}
},
"page" : {
"size" : 3500,
"totalElements" : 2,
"totalPages" : 1,
"number" : 0
}
}
Services
Find Services
GET /v2/services
Authorization
This endpoint requires read
action on the service
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/services?config.addressAndPortIndex%5Bingress%5D=foo.bar.com%7C%5B80--80%5D' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI0YkdpRG5PVnYxbXBYYUhwWW1FNWlBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjVkNjBlYzM5LTQzYzktNDk0My05MzEzLTgyNDQ5YTdjZDczMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTA4MCwiZXhwIjoxNzI1MjYyNjgwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjUzZWE4MjU2LTUxZDItNGE0Mi04NzQ0LWE3YjIxNDg4YzEyY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTA4MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.l2s9OUBu5iXEN1b-dengeJ8Ko0gU6uiQ2OhZAgDPOvP-EL9fsnnTM7zYJPJrb6l1OGmq94OEV1BLB7DZzb8Pt8492bYKSP0pxd1ocEIfujELDOWFTmVrIQlGtEwJQbcJtEBCvmQNyWr6KBZtpxQjr1V7ESP0SOAeQDXxyDNTmtegjkS6zZRPjRp5_cG-PVPHCdcx4BDYIT3zxV105fmVv8LMvfIT9TIIm0tPtgVoOanVWQ8Owgfeb9VDYmlOZ4CO4g4_hzLFrSQIvsg_7JLMCKojncWmyZE7SN79YDQmdhlo_4PRrUoAZU-f6zq0HL5REhGkNh2TP0zhuQa9ntFNEg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 283
{
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?config.addressAndPortIndex%5Bingress%5D=foo.bar.com%7C%5B80--80%5D"
}
},
"page" : {
"size" : 0,
"totalElements" : 0,
"totalPages" : 1,
"number" : 0
}
}
Get Service
GET /v2/services/{id}
Authorization
This endpoint requires read
action on the service
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
No links.
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/services/3b142120-3843-41b3-9380-27bbdf4c5a4b' -i -X GET \
-H 'Accept: application/json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ6UVE2aHhfQjVpWmlheXdSVndrdHl3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImMxZTAwYjRmLTViNWQtNGZhZS1iMWE0LTYxMTI3NzU2OTU5NiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTEwNiwiZXhwIjoxNzI1MjYyNzA2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNlN2FmOTBiLTEwZGMtNGUwNy05NzI3LTFiOGMyNzFkNDc3Y1wiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTEwNn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.eeAUZjI2dGtCN4g0_GgfMVeazSRz48S5rV45SuphZfOeO5h_dVKAp9tcR__3NsojaxR8uVltPNZAioL7b5vL8951wzFBfk4vyb1VvgRFqKnnTp8xh4KexjFA5w2isMZEPceUBHvfhcvicPYp0eXkUDTDwOWETMy9gs-1rZlFQ_bEvdY53weZCyvLZk1oKH_HvHuJ8fzSWu0HZ8aOxE_FMXVYz98zBLjB9kXno7eM8Aqa6Wu4WqZif_RKM1_8rqqfpFmBiN4j4eYnpzimuaDKJtF-xfpGo7dTQyrlJDW0hsOaOIqWknzTczsIv320j9DhtPugkSXVJpGeOMQRg2j14Q'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1520
{
"id" : "3b142120-3843-41b3-9380-27bbdf4c5a4b",
"networkId" : "b6e831c7-e354-4080-84a8-77482ce5f77b",
"zitiId" : "ziti.id.t070d7gb",
"name" : "My Service swdnzg7u",
"encryptionRequired" : true,
"terminatorStrategy" : "sticky",
"attributes" : [ "#Attr-1", "#Attr-2" ],
"modelType" : "AdvancedTunnelerToEndpoint",
"ownerIdentityId" : "42b2f0b0-72c7-4a26-92c3-47b2832b1dad",
"createdBy" : "42b2f0b0-72c7-4a26-92c3-47b2832b1dad",
"createdAt" : "2024-09-02T06:38:25.287128Z",
"updatedAt" : "2024-09-02T06:38:25.379630Z",
"deletedBy" : null,
"deletedAt" : null,
"configIdByConfigTypeId" : {
"a575a245-8991-4e81-a985-f021b573a08f" : "a59dce68-a690-43fb-88f0-d239a96b3ae3",
"72d1f090-9436-4375-befc-1947f78b1cea" : "3e30abe4-4ef3-465e-832e-69926fdf36eb"
},
"model" : {
"clientIngress" : {
"protocols" : [ "udp", "tcp" ],
"addresses" : [ "aaabbb.com", "10.10.0.0/16" ],
"ports" : [ {
"low" : 500,
"high" : 549
}, {
"low" : 8080,
"high" : 8080
} ]
},
"serverEgress" : {
"forwardProtocol" : true,
"allowedProtocols" : [ "udp", "tcp" ],
"forwardHost" : true,
"allowedHosts" : [ "aaabbb.com", "10.10.0.0/16" ],
"forwardPort" : true,
"allowedPortRanges" : [ {
"low" : 500,
"high" : 549
}, {
"low" : 8080,
"high" : 8080
} ]
},
"bindEndpointAttributes" : [ "#east-pop" ],
"edgeRouterAttributes" : [ "#LA-dataCenter-ERs" ]
}
}
Create Service
POST /v2/services
Authorization
This endpoint requires create
action on the service
resource type.
Path parameters
No parameters.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
networkId |
String |
true |
|
name |
String |
true |
|
encryptionRequired |
Boolean |
true |
|
terminatorStrategy |
String |
true |
|
configIds |
Array[Object] |
true |
|
configNames |
Array[String] |
true |
|
configs |
Array[Object] |
true |
|
configs[].networkId |
String |
true |
|
configs[].name |
String |
true |
|
configs[].configTypeId |
String |
true |
|
configs[].configTypeName |
String |
true |
|
configs[].configType |
Object |
true |
|
configs[].configType.networkId |
String |
true |
|
configs[].configType.name |
String |
true |
|
configs[].configType.schema |
Object |
true |
|
configs[].data |
Object |
true |
|
attributes |
Array[String] |
true |
|
modelType |
String |
true |
Must be one of [Generic, TunnelerToSdk, TunnelerToEndpoint, TunnelerToEdgeRouter, AdvancedTunnelerToEndpoint, ZSSH]. |
model |
Object |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
No links.
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/services' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxX2gzaTZKNU9USE5CVWQ2OTI5VkRnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQyYjJmMGIwLTcyYzctNGEyNi05MmMzLTQ3YjI4MzJiMWRhZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTEwNSwiZXhwIjoxNzI1MjYyNzA1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImNjMTAxYTcyLTdkNWYtNDQ2Yi05OGEwLWM4OTdkODY5NjgzMFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTEwNX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.JPEgMg_6NVFYgOXzBrgMSSpwKKk5e3CRUsxDR4DYmeDhAFYct5TZ7Yr37nDxy-nghxzKoePv6RJh6O73sqiodrjIskdIzb26_q6Dk85MGfBV7A0U47DR1MN8p8Vkmjkzu9VPb44h6rGaj74wPbia4n1d1Lnf6FhdsnYEr5-92WNCoDg6OfDCiEEk_056XMQiM7MbFCQZl84nhqwfit-KwE8N94EV--TTRL42-PRWLKLrigSjFoM7WVUiklWC-5mFQbGHMIr-sYrb4mIz8XyQFCwRaUGWNOni_kn5ufJlGHwujei1CLcnnJ1Z76iHs-4mToQ1WUzQhs5CP-n6G4gxTA' \
-d '{"networkId":"b6e831c7-e354-4080-84a8-77482ce5f77b","name":"My Service swdnzg7u","encryptionRequired":true,"terminatorStrategy":"sticky","attributes":["#Attr-2","#Attr-1"],"modelType":"AdvancedTunnelerToEndpoint","model":{"clientIngress":{"protocols":["udp","tcp"],"addresses":["aaabbb.com","10.10.0.0/16"],"ports":[{"low":8080,"high":8080},{"low":500,"high":549}]},"serverEgress":{"forwardProtocol":true,"allowedProtocols":["udp","tcp"],"forwardHost":true,"allowedHosts":["aaabbb.com","10.10.0.0/16"],"forwardPort":true,"allowedPortRanges":[{"low":8080,"high":8080},{"low":500,"high":549}]},"sourceIpConfigType":null,"sourceIpConfig":null,"bindEndpointAttributes":["#east-pop"],"edgeRouterAttributes":["#LA-dataCenter-ERs"]}}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/json
Content-Length: 1520
{
"id" : "3b142120-3843-41b3-9380-27bbdf4c5a4b",
"networkId" : "b6e831c7-e354-4080-84a8-77482ce5f77b",
"zitiId" : "ziti.id.t070d7gb",
"name" : "My Service swdnzg7u",
"encryptionRequired" : true,
"terminatorStrategy" : "sticky",
"attributes" : [ "#Attr-1", "#Attr-2" ],
"modelType" : "AdvancedTunnelerToEndpoint",
"ownerIdentityId" : "42b2f0b0-72c7-4a26-92c3-47b2832b1dad",
"createdBy" : "42b2f0b0-72c7-4a26-92c3-47b2832b1dad",
"createdAt" : "2024-09-02T06:38:25.287128Z",
"updatedAt" : "2024-09-02T06:38:25.379630Z",
"deletedBy" : null,
"deletedAt" : null,
"configIdByConfigTypeId" : {
"a575a245-8991-4e81-a985-f021b573a08f" : "a59dce68-a690-43fb-88f0-d239a96b3ae3",
"72d1f090-9436-4375-befc-1947f78b1cea" : "3e30abe4-4ef3-465e-832e-69926fdf36eb"
},
"model" : {
"clientIngress" : {
"protocols" : [ "udp", "tcp" ],
"addresses" : [ "aaabbb.com", "10.10.0.0/16" ],
"ports" : [ {
"low" : 500,
"high" : 549
}, {
"low" : 8080,
"high" : 8080
} ]
},
"serverEgress" : {
"forwardProtocol" : true,
"allowedProtocols" : [ "udp", "tcp" ],
"forwardHost" : true,
"allowedHosts" : [ "aaabbb.com", "10.10.0.0/16" ],
"forwardPort" : true,
"allowedPortRanges" : [ {
"low" : 500,
"high" : 549
}, {
"low" : 8080,
"high" : 8080
} ]
},
"bindEndpointAttributes" : [ "#east-pop" ],
"edgeRouterAttributes" : [ "#LA-dataCenter-ERs" ]
}
}
Update Service
PATCH /v2/services/{id}
Authorization
This endpoint requires update
action on the service
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
terminatorStrategy |
String |
true |
|
configIds |
Array[Object] |
true |
|
configNames |
Array[String] |
true |
|
updateExclusiveConfigs |
Map |
true |
|
createExclusiveConfigs |
Array[Object] |
true |
|
createExclusiveConfigs[].networkId |
String |
true |
|
createExclusiveConfigs[].name |
String |
true |
|
createExclusiveConfigs[].configTypeId |
String |
true |
|
createExclusiveConfigs[].configTypeName |
String |
true |
|
createExclusiveConfigs[].configType |
Object |
true |
|
createExclusiveConfigs[].configType.networkId |
String |
true |
|
createExclusiveConfigs[].configType.name |
String |
true |
|
createExclusiveConfigs[].configType.schema |
Object |
true |
|
createExclusiveConfigs[].data |
Object |
true |
|
attributes |
Array[String] |
true |
|
modelType |
String |
true |
Must be one of [Generic, TunnelerToSdk, TunnelerToEndpoint, TunnelerToEdgeRouter, AdvancedTunnelerToEndpoint, ZSSH]. |
model |
Object |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
No links.
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/services/3b142120-3843-41b3-9380-27bbdf4c5a4b' -i -X PATCH \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJHYVdKX0hqXzZyWGNaSVhvRG1PdlVBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQ0NDZlNzkzLWY2ZTItNDRmZS1hZmViLTg3NWQ2MzBlOTM0NSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTExMSwiZXhwIjoxNzI1MjYyNzExLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjA5YTc4NzU5LTU1MzMtNDc1Zi1iN2E5LWI5YmY3MWRhYzNlY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTExMX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.AX8aJnBgT4NOzTG9pRi_HP4dSNPC-qDxdq49FSkX9TimPiKYaJt81A4BLAA2i6sHjx-YyD54VNucOatrR27c-SgSB4jltohIdsiW__EnPjdtQLGQOP-bCrKg3gG8ySZWqYlL-3jzgqi4VhqqurbB_mzQm2iPtdwaVwZHz5AmycDWDCmAOyYO7Y4CiyA2UpPsb11amhmY9JhG-XQgiaxfRDBrouoK__1RraXqXSlClXCQQQlEdGPZE4aTPsiRfz_qgsLCKqr780AVCxAZXNRb2anTmcrRvxmitjYdjJsVx6rwicBNIX4xST0PH8y5Wh3iHeaAbQqE7crWYxe489wJhg' \
-d '{"name":"Our Service swdnzg7u","attributes":["#Attr-2","#Attr-4"],"modelType":"AdvancedTunnelerToEndpoint","model":{"clientIngress":{"protocols":["udp","tcp"],"addresses":["aaabbb.com","10.10.0.0/16"],"ports":[{"low":8080,"high":8080},{"low":500,"high":549}]},"serverEgress":{"forwardProtocol":true,"allowedProtocols":["udp","tcp"],"forwardHost":true,"allowedHosts":["aaabbb.com","10.10.0.0/16"],"forwardPort":true,"allowedPortRanges":[{"low":8080,"high":8080},{"low":500,"high":549}]},"sourceIpConfigType":null,"sourceIpConfig":null,"bindEndpointAttributes":["#east-pop"],"edgeRouterAttributes":["#LA-dataCenter-ERs"]}}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/json
Content-Length: 1521
{
"id" : "3b142120-3843-41b3-9380-27bbdf4c5a4b",
"networkId" : "b6e831c7-e354-4080-84a8-77482ce5f77b",
"zitiId" : "ziti.id.t070d7gb",
"name" : "Our Service swdnzg7u",
"encryptionRequired" : true,
"terminatorStrategy" : "sticky",
"attributes" : [ "#Attr-4", "#Attr-2" ],
"modelType" : "AdvancedTunnelerToEndpoint",
"ownerIdentityId" : "42b2f0b0-72c7-4a26-92c3-47b2832b1dad",
"createdBy" : "42b2f0b0-72c7-4a26-92c3-47b2832b1dad",
"createdAt" : "2024-09-02T06:38:25.287128Z",
"updatedAt" : "2024-09-02T06:38:31.930237Z",
"deletedBy" : null,
"deletedAt" : null,
"configIdByConfigTypeId" : {
"72d1f090-9436-4375-befc-1947f78b1cea" : "3b9eb20b-7278-4ffe-822b-9d9da84d3c02",
"a575a245-8991-4e81-a985-f021b573a08f" : "d54e917b-c20a-403f-b271-184902659974"
},
"model" : {
"clientIngress" : {
"protocols" : [ "udp", "tcp" ],
"addresses" : [ "aaabbb.com", "10.10.0.0/16" ],
"ports" : [ {
"low" : 500,
"high" : 549
}, {
"low" : 8080,
"high" : 8080
} ]
},
"serverEgress" : {
"forwardProtocol" : true,
"allowedProtocols" : [ "udp", "tcp" ],
"forwardHost" : true,
"allowedHosts" : [ "aaabbb.com", "10.10.0.0/16" ],
"forwardPort" : true,
"allowedPortRanges" : [ {
"low" : 500,
"high" : 549
}, {
"low" : 8080,
"high" : 8080
} ]
},
"bindEndpointAttributes" : [ "#east-pop" ],
"edgeRouterAttributes" : [ "#LA-dataCenter-ERs" ]
}
}
Delete Service
DELETE /v2/services/{id}
Authorization
This endpoint requires delete
action on the service
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
No links.
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/services/3b142120-3843-41b3-9380-27bbdf4c5a4b' -i -X DELETE \
-H 'Accept: application/json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJvQjNUd3lLYXFtWXlOUzREQlNxcGZBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjYyMTdiMzI5LTg1YzYtNGQ5Zi04YWQyLWNjMTRkNTJkZTZmYiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTExNCwiZXhwIjoxNzI1MjYyNzE0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjY1NTkxYjllLTA5ZDEtNDA4NS1iYmM4LTM1NmQ2NjJjN2RkZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTExNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Hu2IqjQsw9i_ozG1aXyJ5LX-Ndppj5zzNMwx6veaMtSzlLjELRzgGcQdpYfVvfTrXzZ_8OjLvY-T7p7BaL6hJOHd2l-Vl6pjl5QhNQvWZLjh_w-5Yy6QX0eyPdnhVut4M8Iad3IfPrmY4FsZpZelmQO3pJeQC7tFNy59MdJub44FbtN_jmPDUatIdjG2nvKYIrhzbFgKSO_lUwHZf0YdsMUWfppieiqpOr-t0JlIIElY0-VysppF8wfFqFvRe_RaOHgXwNx7l21bjRk_RYTjCEVLizxn-q2PqJLTRzxbveVZFBzVzLv8I2cCZSXw1uZqcrvItHAA42mHlyMxCuZ83A'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/json
Content-Length: 1509
{
"id" : "3b142120-3843-41b3-9380-27bbdf4c5a4b",
"networkId" : "b6e831c7-e354-4080-84a8-77482ce5f77b",
"zitiId" : null,
"name" : "Our Service swdnzg7u",
"encryptionRequired" : true,
"terminatorStrategy" : "sticky",
"attributes" : [ ],
"modelType" : "AdvancedTunnelerToEndpoint",
"ownerIdentityId" : "42b2f0b0-72c7-4a26-92c3-47b2832b1dad",
"createdBy" : "42b2f0b0-72c7-4a26-92c3-47b2832b1dad",
"createdAt" : "2024-09-02T06:38:25.287128Z",
"updatedAt" : "2024-09-02T06:38:34.943322Z",
"deletedBy" : "6217b329-85c6-4d9f-8ad2-cc14d52de6fb",
"deletedAt" : "2024-09-02T06:38:34.874Z",
"configIdByConfigTypeId" : {
"72d1f090-9436-4375-befc-1947f78b1cea" : "3b9eb20b-7278-4ffe-822b-9d9da84d3c02",
"a575a245-8991-4e81-a985-f021b573a08f" : "d54e917b-c20a-403f-b271-184902659974"
},
"model" : {
"clientIngress" : {
"protocols" : [ "udp", "tcp" ],
"addresses" : [ "aaabbb.com", "10.10.0.0/16" ],
"ports" : [ {
"low" : 500,
"high" : 549
}, {
"low" : 8080,
"high" : 8080
} ]
},
"serverEgress" : {
"forwardProtocol" : true,
"allowedProtocols" : [ "udp", "tcp" ],
"forwardHost" : true,
"allowedHosts" : [ "aaabbb.com", "10.10.0.0/16" ],
"forwardPort" : true,
"allowedPortRanges" : [ {
"low" : 500,
"high" : 549
}, {
"low" : 8080,
"high" : 8080
} ]
},
"bindEndpointAttributes" : [ ],
"edgeRouterAttributes" : [ ]
}
}
App Wans
Find App Wans
GET /v2/app-wans
Authorization
This endpoint requires read
action on the app-wan
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
name |
String |
true |
|
zitiId |
String |
true |
|
networkId |
String |
true |
|
serviceAttributes |
Array[String] |
true |
|
endpointAttributes |
Array[String] |
true |
|
postureCheckAttributes |
Array[String] |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans' -i -X GET \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJVSXBDUTRvX3VQU2o3T3BXXzZONGdBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImI2YzJkMTJiLTY3M2QtNDRlZi1iNGZkLTEwNWQyNWZiZWE1YSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIxMiwiZXhwIjoxNzI1MjYyODEyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjBjNzAwZWRmLWY4MmYtNGM3ZC1hNDE0LTU1NTU3YTI2MDJmOVwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIxMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ndvcdEjCgGD2Ix4XJEX5wmQYFfmUHknxfLzm4hy-orZIyVTWljQVo3k3SmBwsmSYvU8rSqL9ZxtE9NuAf4IHlCguKBbQ9eKL45-ZSnzFcDrdcSANGIe_xLmQZIbEHZwEcyl_Q6WZBsR5Jan7LrS56b7E6hEfcM2CrmNlfPKt9W06p1ctWpkKyIngN3z9thx2MovWB3gsZHSNeZXVKikq_KL8iC2rnyLMfJjAzzEqPMSuA8nenCToEF7tQ8UTZSIzMoo1gT2GkjxnDoxVpycYisYzcG26CsaeA4Bxb7HAoaFkbigu_Z3TullwTw1x4zahIMd-NP28R0IRTrpyYzylJg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 6308
{
"_embedded" : {
"appWanList" : [ {
"id" : "3cb7fb4a-9406-4b43-9477-31f9f89e893f",
"ownerIdentityId" : "bac3a21c-b2b8-49c3-8cc1-99e493f8fc02",
"createdBy" : "bac3a21c-b2b8-49c3-8cc1-99e493f8fc02",
"createdAt" : "2024-09-02T06:40:12.030361Z",
"updatedAt" : "2024-09-02T06:40:12.030813Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-2666",
"zitiId" : "58f45a43-8fb6-4799-94fd-36da2c1b635a",
"networkId" : "318eaca4-1721-46b4-8d37-fbc3314e5a77",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/318eaca4-1721-46b4-8d37-fbc3314e5a77",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/3cb7fb4a-9406-4b43-9477-31f9f89e893f",
"title" : "appwan-2666"
}
}
}, {
"id" : "92016f37-70ce-47d9-b884-8ee180ef4734",
"ownerIdentityId" : "170960da-c708-4527-9e71-e112e2176192",
"createdBy" : "170960da-c708-4527-9e71-e112e2176192",
"createdAt" : "2024-09-02T06:40:11.663784Z",
"updatedAt" : "2024-09-02T06:40:11.664440Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-2606",
"zitiId" : "785a69c0-76f6-40c4-852c-585a61ba6c9a",
"networkId" : "c98dcbc5-5af3-432d-971b-d5a75c710ed8",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c98dcbc5-5af3-432d-971b-d5a75c710ed8",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/92016f37-70ce-47d9-b884-8ee180ef4734",
"title" : "appwan-2606"
}
}
}, {
"id" : "a20ef58e-1f94-47a3-ab3b-f1db15baec4d",
"ownerIdentityId" : "281363be-0200-4ad3-a488-1c356af36db8",
"createdBy" : "281363be-0200-4ad3-a488-1c356af36db8",
"createdAt" : "2024-09-02T06:40:11.897729Z",
"updatedAt" : "2024-09-02T06:40:11.951193Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Updated App Wan name",
"zitiId" : "edd91019-03e1-4d37-a351-4e89a8856b79",
"networkId" : "214d2de9-b8cc-40c3-a323-850d50c3d34d",
"serviceAttributes" : [ "#service03", "#service02", "#service01" ],
"endpointAttributes" : [ "#usendpoints" ],
"postureCheckAttributes" : [ "#windows" ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/214d2de9-b8cc-40c3-a323-850d50c3d34d",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/a20ef58e-1f94-47a3-ab3b-f1db15baec4d",
"title" : "Updated App Wan name"
}
}
}, {
"id" : "b75cb393-04d9-456e-a7fc-1b40fb3961ff",
"ownerIdentityId" : "b4bf235c-4f18-470d-9b4e-ce11e54a4bdf",
"createdBy" : "b4bf235c-4f18-470d-9b4e-ce11e54a4bdf",
"createdAt" : "2024-09-02T06:40:11.865725Z",
"updatedAt" : "2024-09-02T06:40:11.866233Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-2636",
"zitiId" : "9934458c-5fd8-46af-81f0-511421685a23",
"networkId" : "8a3ccbe3-51a3-4a64-b4dd-790e27c82d03",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8a3ccbe3-51a3-4a64-b4dd-790e27c82d03",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/b75cb393-04d9-456e-a7fc-1b40fb3961ff",
"title" : "appwan-2636"
}
}
}, {
"id" : "b9c6c21a-d350-4b8b-85b7-58db4b6c632d",
"ownerIdentityId" : "b4e7b493-d299-4775-808b-f5c604e94cff",
"createdBy" : "b4e7b493-d299-4775-808b-f5c604e94cff",
"createdAt" : "2024-09-02T06:40:11.826925Z",
"updatedAt" : "2024-09-02T06:40:11.827460Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-2626",
"zitiId" : "8d311679-852c-47be-9185-9cb5bf946db8",
"networkId" : "a216eb10-07b3-4266-8216-dc3f3d838430",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a216eb10-07b3-4266-8216-dc3f3d838430",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/b9c6c21a-d350-4b8b-85b7-58db4b6c632d",
"title" : "appwan-2626"
}
}
}, {
"id" : "f5d3f3b4-01cf-49f2-ac63-c79f839de22a",
"ownerIdentityId" : "2bb0ef19-7d5b-4331-9445-ed5a14bb63fe",
"createdBy" : "2bb0ef19-7d5b-4331-9445-ed5a14bb63fe",
"createdAt" : "2024-09-02T06:40:11.988122Z",
"updatedAt" : "2024-09-02T06:40:11.998695Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-2656",
"zitiId" : "7d97b195-c6fb-437a-a2ef-516335717678",
"networkId" : "1613ce5d-d6a0-4d9f-a70f-055b72e3525b",
"serviceAttributes" : [ "#service03", "#service02", "#service01" ],
"endpointAttributes" : [ "#usendpoints" ],
"postureCheckAttributes" : [ "#windows" ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1613ce5d-d6a0-4d9f-a70f-055b72e3525b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/f5d3f3b4-01cf-49f2-ac63-c79f839de22a",
"title" : "appwan-2656"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans"
}
},
"page" : {
"size" : 3500,
"totalElements" : 6,
"totalPages" : 1,
"number" : 0
}
}
Get App Wan
GET /v2/app-wans/{id}
Authorization
This endpoint requires read
action on the app-wan
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans/ca55f8be-188f-4191-b61e-4d7e545cf15c' -i -X GET \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJWbnFRLVFyX0hsVlkyRjNkSGVpNU5nIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImU0YWEwYWQyLWY0MDAtNGE5NS1iNGZkLThjZDE0ZjNiMjQ0NiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTIxMiwiZXhwIjoxNzI1MjYyODEyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjA3MTFiZDQ1LTViODItNGM1NS04NmEwLTQ1ODFlYWM4NDI5MFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTIxMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.luKLKAaQU5tb22u9xoM2pogMC2RDS9DiB06-LtHjIYoWYy6H6ehg3ED9ReVTpUc0y0vqRZRaWhQ59dQSn32TsQWWZLQfoZRA_m7YXz8d6G8pz5ggf4gcF49kehbnCl8svnlBUKBB0PcvmBytRPoq6R6R2Q0DKhEkvX8UmkeaCSWwyTHfZ5qzq7sH8le3vvCnWhZFCVeDoOpJ9tprjMB_2Ch5Y8EhoIqWmBhA1v4Kdk_A-T3jQ1fGO2OzoZBf2D2GoGHiJEpRGtJRgro36fgH0hPrrNKjxlVF1sNQWoXONAKbF7Jrg6PBDPoCB4BC8t4YcgoXAJ6eGYhX23otylUBkg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 884
{
"id" : "ca55f8be-188f-4191-b61e-4d7e545cf15c",
"ownerIdentityId" : "69e6c4f4-9a0e-4977-a7ec-db26b3215e0b",
"createdBy" : "69e6c4f4-9a0e-4977-a7ec-db26b3215e0b",
"createdAt" : "2024-09-02T06:40:12.076085Z",
"updatedAt" : "2024-09-02T06:40:12.076534Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-2676",
"zitiId" : "a0a31dfe-7ae2-4ca9-9edb-92ce424dc851",
"networkId" : "003359e2-1766-4439-bfaf-c6da3f91c6cf",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/003359e2-1766-4439-bfaf-c6da3f91c6cf",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/ca55f8be-188f-4191-b61e-4d7e545cf15c",
"title" : "appwan-2676"
}
}
}
Find App Wans
GET /v2/app-wans
Authorization
This endpoint requires read
action on the app-wan
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
name |
String |
true |
|
zitiId |
String |
true |
|
networkId |
String |
true |
|
serviceAttributes |
Array[String] |
true |
|
endpointAttributes |
Array[String] |
true |
|
postureCheckAttributes |
Array[String] |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ5SzUzSWRxMEYyVFlMNkotX01waVB3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjgwMzQ3YmRhLWMwYjQtNDAzMC05NjcxLTRlZjM5MzkwNjFmZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcyNTI1OTE0MSwiZXhwIjoxNzI1MjYyNzQxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjM5ZjU0Zjc1LTU2MjEtNGE1MS05YzRlLTRjY2IwOWE3NDZmZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcyNTI1OTE0MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.HSJranwAmx2eC7IFcRkg66wSk6DP4nuNTWspYqRvUoqRTBMB7uevDCJy64oOKNxUw7RwHyt_KEVb4p0wjNSSRajQQIvvUcnjle-QhEt3VItw4SiNpcmhUbR_N42_8iD7W2zQGNYokhZ-7tOooeEWtrMsvJ-NIIi1w31xql-fgd7NMzODbOKW6yitMuFOliXWSDLL3MJCudnZIac9OI1u1tFdIPVk8ehJGqPycAryubE9KWNIllm0zHNTnvmQYisKAI61R5q8bnUjH6KBtKhXWOrGUVNepFgZ3WioY6zDAP7kWIfrW7FChZycZvSuGuZO8t9QDS2i8FrI835V0AN-tA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2336
{
"_embedded" : {
"appWanList" : [ {
"id" : "31aa5731-edcd-44b1-9348-7d7fa7794068",
"ownerIdentityId" : "a6c90985-51f6-443b-a0d1-a3278d50c739",
"createdBy" : "a6c90985-51f6-443b-a0d1-a3278d50c739",
"createdAt" : "2024-09-02T06:39:01.884974Z",
"updatedAt" : "2024-09-02T06:39:01.886320Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Find Test AppWan 2",
"zitiId" : "f8a2464a-7399-4bd9-baff-3d0d474c5d18",
"networkId" : "5912dc67-41cb-4262-b0db-bbf14ad52829",
"serviceAttributes" : [ "#seAttr1", "#seAttr3" ],
"endpointAttributes" : [ "#epAttr1" ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5912dc67-41cb-4262-b0db-bbf14ad52829",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/31aa5731-edcd-44b1-9348-7d7fa7794068",
"title" : "Find Test AppWan 2"
}
}
}, {
"id" : "767bacab-146c-46d4-bbc0-d39739869435",
"ownerIdentityId" : "a6c90985-51f6-443b-a0d1-a3278d50c739",
"createdBy" : "a6c90985-51f6-443b-a0d1-a3278d50c739",
"createdAt" : "2024-09-02T06:39:01.881852Z",
"updatedAt" : "2024-09-02T06:39:01.883906Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Find Test AppWan 1",
"zitiId" : "97939cb7-4e1e-4146-b8c4-5173459eb5f3",
"networkId" : "5912dc67-41cb-4262-b0db-bbf14ad52829",
"serviceAttributes" : [ "#seAttr1", "#seAttr2" ],
"endpointAttributes" : [ "#epAttr2", "#epAttr1" ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5912dc67-41cb-4262-b0db-bbf14ad52829",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/767bacab-146c-46d4-bbc0-d39739869435",
"title" : "Find Test AppWan 1"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans"
}
},
"page" : {
"size" : 3500,
"totalElements" : 2,
"totalPages" : 1,
"number" : 0
}
}
Create App Wan
POST /v2/app-wans
Authorization
This endpoint requires create
action on the app-wan
resource type.
Path parameters
No parameters.