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.eyJqdGkiOiJmQ0c1MlZXeU9ZZjgyNTcyVWtpdE1BIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImY5ZTJhYTA1LTQyYTUtNDVjOS1iMjkzLTdjMTcwZWJhYzFjZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIzNywiZXhwIjoxNzAxNjc5ODM3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImFkMjJlZjc1LTI2YmItNGYwZS1iYTMzLTk5ZDVmZGJkNmNlYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIzN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.eB_h-mFyRsj6PiU0Sa62_GOsVOG4sSOIb_zsRYgOQff7lDGWn5n2n_fmkIj33DulDXVUqvLCp3zqY9g51OKJYcb7X4jfev6s6VAHyJkD0lo_b5FRrDkxOlRyWHY2V_x3Kh_xSAWHr19YKrbI4iaDLMxeF26JgHyO0OV4yrTqupJ8nJWRiE4v_PHjdncwY4BkKa5H2keRZZJ40dY1mmprt4CBbpJh5di68QaBamEBEK0ina_5TlIG5FSpVsbe-Jg0o6HJ36csuIsoA1mPxkum8zFI_9MS0vcaBUEr0sjiNWtX0KfUaYpBKJNS2yMhIk1ypLvh89bV1jKMtFGHnueeXw' \
-d '{"name":"New NG","billingAccountId":"070e5ac5-917d-4e63-9def-5f8a3b0d88fa","ownerIdentityId":"38bec666-1584-46a9-a9f0-515ab25f8aa8"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1089
{
"id" : "ea6ca913-7ba9-4db8-94b8-b316caed5f69",
"name" : "New NG",
"shortName" : "NEWNG",
"billingAccountId" : "070e5ac5-917d-4e63-9def-5f8a3b0d88fa",
"ownerIdentityId" : "38bec666-1584-46a9-a9f0-515ab25f8aa8",
"createdBy" : "f9e2aa05-42a5-45c9-b293-7c170ebac1ce",
"createdAt" : "2023-12-04T07:50:37.970529Z",
"updatedAt" : "2023-12-04T07:50:37.970529Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/ea6ca913-7ba9-4db8-94b8-b316caed5f69"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/fcb05175-06fc-4684-b2d6-9e3c5a840858",
"title" : "Create NetworkGroup",
"profile" : "meta"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=ea6ca913-7ba9-4db8-94b8-b316caed5f69"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=ea6ca913-7ba9-4db8-94b8-b316caed5f69"
}
}
}
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/84f64275-0bc3-4b08-8a27-722f694062f4' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJpUXo4SlZwbU9GSGxiTXh4S0pwQkp3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjY4YjAxYTUzLTdlYmQtNGE1YS05ZGIxLWNhZTEzYjc0OGI3ZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIzNCwiZXhwIjoxNzAxNjc5ODM0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImIwODI0MWFmLTcxYzktNGQzZS05ZDA0LWM0YmE0OTJjZWMwNlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIzNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Di9qTeSn975kbyHD8yy7ybe2goIiFxIfRk4W0JwTIG5S7pEWqwRlaq9CRhomLKxIh9xnW12bfx2VfFH0ysQRrTUqwkPG2CIIEM3yAjZdwV0MuEnsLWQp4nL5ZCbQeByJg-zZ2tRuHgWurYex8yEhWnkuhGBDHG7lFPhwlbRc9F9M6cwhakUMvJitWoOM79pHog9KTI8VFVfUjP1p_LmBC_ZZeERTZIXt5XVp9y3r_V6QJdJrYPdXNlyJmjPa2SRhO55rt3Pw4kIgZSDjMhRDSMvqKVks_MTm8UJg1qvZc3Uq_xCCOAj-4QDBX8-YheIu0sc8oKR_kzSTgQR8pPsJ3Q'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1146
{
"id" : "84f64275-0bc3-4b08-8a27-722f694062f4",
"name" : "Test-NG",
"shortName" : "nw-91",
"billingAccountId" : "50d65ad7-e62e-412f-bec1-22345e67b335",
"ownerIdentityId" : "750a23f6-252d-496a-998f-479547fbf982",
"createdBy" : "e86902cf-fc90-4bb9-8328-c87460e8a488",
"createdAt" : "2023-12-04T07:50:34.389672Z",
"updatedAt" : "2023-12-04T07:50:34.601064Z",
"deletedBy" : "68b01a53-7ebd-4a5a-9db1-cae13b748b7e",
"deletedAt" : "2023-12-04T07:50:34.600Z",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/84f64275-0bc3-4b08-8a27-722f694062f4"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/76c20357-f89d-416f-ad46-b355fd83ffff",
"title" : "Delete NetworkGroup",
"profile" : "meta"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=84f64275-0bc3-4b08-8a27-722f694062f4"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=84f64275-0bc3-4b08-8a27-722f694062f4"
}
}
}
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/828d81d8-9195-4e2a-9e81-7599ba3997ee' -i -X GET \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJLSmMxLW9fQmFsc1J1MzVwSjdrV1BnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhhNGU4Yjc0LTY4N2UtNDdjYi1hYWExLThiOTMwNzFiN2VjNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIzNywiZXhwIjoxNzAxNjc5ODM3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImNlYzZhMjJmLTRjZjktNDJmNy1iNTYzLWExZTY2MjYxNmZjZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIzN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.nG3rLaVZY3ZrBaTXigDGUBzAJwT7EYC-3aVyagEey6quO8xabE-iVLjQTBK4qZQ_maz46LZ_YznOxhNiAV1pGgMZEHp-Hd9V41IgN3WIzaRiM2mmvq2tOixnJZa_lOpCcrYUguWrAjgRoWBgjAtleVC2JwL90a2gcb57K_K8lWPfqP2dKKbBZx2GP4OSUfGRzMa6g0nPhIImdAKqfJWW0Df03pZR0fs6C4QN_XrSdrUb4BMpCxVxYe7ri5TP6bu4DEOO_sJ3ag1yimBc24os62vAnjfVDHVb8agoLFk-87BA-K3Gr8qcAWQVEzmvmyMybO30SX7l34sS4_Okr13caA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 885
{
"id" : "828d81d8-9195-4e2a-9e81-7599ba3997ee",
"name" : "Test-NG",
"shortName" : "nw-161",
"billingAccountId" : "af0ad429-77fe-4dcf-9c12-1c3e18d07598",
"ownerIdentityId" : "03b236c8-318b-4f8b-beaf-812084309d55",
"createdBy" : "0dcb92fd-fec4-452f-b4d8-a76e98496372",
"createdAt" : "2023-12-04T07:50:37.080024Z",
"updatedAt" : "2023-12-04T07:50:37.080024Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/828d81d8-9195-4e2a-9e81-7599ba3997ee"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=828d81d8-9195-4e2a-9e81-7599ba3997ee"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=828d81d8-9195-4e2a-9e81-7599ba3997ee"
}
}
}
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.eyJqdGkiOiJEZ3owQUE0TUZCbHE0VlZvTkRzZHVnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImMzNzA0MjVjLWY2YmEtNDBmYS04ZTdjLTFhZGQ1NjJkMTcwNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIzNSwiZXhwIjoxNzAxNjc5ODM1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImZhNTM5ZGE1LWRlNTYtNDE4NC1iZmE3LWIwNGYyYTU1YTM3N1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIzNX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ordEAY03lIxMx69MRzhMHYDYVd3ARvmOjWzg3lkri8w_aIXcc_VBdbbnEh9bcJHwQdWyMkVr2kNgZ7qqQdPZXn7fHbdUE_2lMgCSxAvwedh1blxiqpsURSgIU6F4WHcSG6iW-2NI8IsK-rtkMJsIwMrjLCpHZ1IH7E4UWxytwjMu6pabwRXiU1hKBygp1w0Kk0AdrQJVYvJF4PbVzOTGMEv6ynyt_OpymLjILCgY2bZiZmJJL5n7ouAJh8cvtUcb2S-xDQpbmTcCVPWyFIZ-hreoLeKU7Z9PWWRHTyFYP-Grt3BAl7vDVqC8VB1-eshAylQBYZe1OtMsL6wSIUirEw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 6109
{
"_embedded" : {
"networkGroupList" : [ {
"id" : "09698721-d9a8-4009-a119-ede82e0d70cb",
"name" : "Test-NG",
"shortName" : "nw-141",
"billingAccountId" : "bc5b0295-a28e-4c86-98b7-5f2790fe0e91",
"ownerIdentityId" : "5830af30-1ca1-48bc-ac1a-55164750eba6",
"createdBy" : "6bbc5f33-33df-450d-a8c7-c5f4226bcacb",
"createdAt" : "2023-12-04T07:50:35.767111Z",
"updatedAt" : "2023-12-04T07:50:35.767111Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/09698721-d9a8-4009-a119-ede82e0d70cb"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=09698721-d9a8-4009-a119-ede82e0d70cb"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=09698721-d9a8-4009-a119-ede82e0d70cb"
}
}
}, {
"id" : "a805c50b-009d-49f8-8932-4020cdcec75e",
"name" : "Updated NG Name-10",
"shortName" : "nw-121",
"billingAccountId" : "9cccb829-4d08-4c7c-a755-9d1c2be87770",
"ownerIdentityId" : "25779ee3-af82-4e8e-8a45-e2f9bb606aa7",
"createdBy" : "e01915e2-c7ff-4e81-972c-6a158c8e3a91",
"createdAt" : "2023-12-04T07:50:35.046012Z",
"updatedAt" : "2023-12-04T07:50:35.374357Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/a805c50b-009d-49f8-8932-4020cdcec75e"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=a805c50b-009d-49f8-8932-4020cdcec75e"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=a805c50b-009d-49f8-8932-4020cdcec75e"
}
}
}, {
"id" : "abb85000-6ee2-44c8-9c6d-57a95aa4ae51",
"name" : "Test-NG",
"shortName" : "nw-71",
"billingAccountId" : "1092d6fa-cb66-4f06-bdde-7fedf8d7aaef",
"ownerIdentityId" : "b6218100-a4d8-4509-bbb1-1dff48f63287",
"createdBy" : "b180c9ce-fe48-42c8-8c76-50bfc898533b",
"createdAt" : "2023-12-04T07:50:32.329273Z",
"updatedAt" : "2023-12-04T07:50:33.446253Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/abb85000-6ee2-44c8-9c6d-57a95aa4ae51"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=abb85000-6ee2-44c8-9c6d-57a95aa4ae51"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=abb85000-6ee2-44c8-9c6d-57a95aa4ae51"
}
}
}, {
"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" : "2023-12-04T07:49:59.735599Z",
"updatedAt" : "2023-12-04T07:49:59.735599Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/bce07cd1-8f36-44a3-b279-26426e7a53ef"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=bce07cd1-8f36-44a3-b279-26426e7a53ef"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=bce07cd1-8f36-44a3-b279-26426e7a53ef"
}
}
}, {
"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" : "2023-12-04T07:49:59.413244Z",
"updatedAt" : "2023-12-04T07:49:59.413244Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/f0428619-11bd-403d-8b00-a463ff8aad84"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=f0428619-11bd-403d-8b00-a463ff8aad84"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=f0428619-11bd-403d-8b00-a463ff8aad84"
}
}
}, {
"id" : "f9bfd50d-96ee-42c4-b94d-98dd5bbc7c57",
"name" : "host-test-network-0",
"shortName" : "nw-21",
"billingAccountId" : "ce60a55e-0b01-4e21-8f84-080611fa67aa",
"ownerIdentityId" : "9f9f1542-22b2-4528-86d9-d89cd2707e1b",
"createdBy" : "9f9f1542-22b2-4528-86d9-d89cd2707e1b",
"createdAt" : "2023-12-04T07:50:20.575235Z",
"updatedAt" : "2023-12-04T07:50:20.575235Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/f9bfd50d-96ee-42c4-b94d-98dd5bbc7c57"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=f9bfd50d-96ee-42c4-b94d-98dd5bbc7c57"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=f9bfd50d-96ee-42c4-b94d-98dd5bbc7c57"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups"
}
},
"page" : {
"size" : 3500,
"totalElements" : 6,
"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/a805c50b-009d-49f8-8932-4020cdcec75e' -i -X PATCH \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJUWkxrZElmZng4cUZNMEQyOGgzRFlBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImU4NGRlNTA4LTI3NWMtNGUyNC1hYjljLTU4NDAxNGZhMTA4YSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIzNSwiZXhwIjoxNzAxNjc5ODM1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjk4ZWQ1Y2RhLWUyYmItNDcyOS05ZDkyLWQ0MmM3NDgzYzZjMVwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIzNX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.nzf4ZkhTbN5QLxn_HAK80L0oaupkAuNqlt_Flxupl6TWvShR2lSZfYo0xCxDNF0ZOrQp4XoXHAoaGJT6fsfFhhneIR0ejscEjzIEu3T4UrQt02lAZyA_81BbCAZR32XgnX5eiOBsMtzOMxJb0oiYjrYAl3hPMwn8F9rFq6WJIXTw4fiHForPhxu9WqnkZdRv6NtETlgzpFTwH4eQcRiErAS7c8F3qSB-9VBlQDJ0LgOdxEUZP_VpDVoEDJEW4tInVAbDMvkfnYrddV6AbWfTMymoz6BnR5TtoXcS3k4yvO0FQ_PXWbiB8PN_bX-ZalqAqEEW4kPU4Za9s5Nvw076jA' \
-d '{"name":"Updated NG Name-10","billingAccountId":"9cccb829-4d08-4c7c-a755-9d1c2be87770","ownerIdentityId":"25779ee3-af82-4e8e-8a45-e2f9bb606aa7"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1102
{
"id" : "a805c50b-009d-49f8-8932-4020cdcec75e",
"name" : "Updated NG Name-10",
"shortName" : "nw-121",
"billingAccountId" : "9cccb829-4d08-4c7c-a755-9d1c2be87770",
"ownerIdentityId" : "25779ee3-af82-4e8e-8a45-e2f9bb606aa7",
"createdBy" : "e01915e2-c7ff-4e81-972c-6a158c8e3a91",
"createdAt" : "2023-12-04T07:50:35.046012Z",
"updatedAt" : "2023-12-04T07:50:35.374357Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/a805c50b-009d-49f8-8932-4020cdcec75e"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/e0b04b11-178f-4ef3-8c2a-3c7537c8ff19",
"title" : "Update NetworkGroup",
"profile" : "meta"
},
"dns-zones" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/dns-zones?networkGroupId=a805c50b-009d-49f8-8932-4020cdcec75e"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks?networkGroupId=a805c50b-009d-49f8-8932-4020cdcec75e"
}
}
}
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 |
|
domainNameLabel |
String |
true |
|
dnsZoneId |
String |
true |
|
managedJwtConnectionId |
String |
true |
|
managedExternalJwtSignerId |
String |
true |
|
managedAuthPolicyId |
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.name |
String |
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.publicDomainName |
String |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/networks' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJLRkc1b3hCZTVtQWNkNWt4ajVPbkVRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjkzYTc2ZWQyLTRlMzItNGJlOS05OTdjLThkOWY4YzI3ZjY3NSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY0NywiZXhwIjoxNzAxNjgwMjQ3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImQzYjA4ZDJlLTlhN2UtNDRkMi04OTc5LTZjYzhlZWI4MTQ1MFwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY0N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.GMNVc07y8NEZmjCGKI0UnZB9Nm6EMY5X2A5M6zIdq9FDD1yUmgtWZVefnm9kEUR0EcxFahsqsQXdl51S2y_9Or6GZE6psiXwqk635C2d6v_d-s7eqmJ2i_oMUSjOEt8Z1MmixdfsSMIVjx1DdCEzKo8CXjfFbdeEiDDJoAyfIWxGPAPRI-I3T55tsuIac12vTbah-pmXResWbZomK-9yUszC4AICHUMEoBZr-K9puvzZtbSVy-_6zxupjtA_WKweTXJ3Ef1tNX6Z1KKc2blLGkSXuox3i0KLE4zHy8WxGaWPTPFkqfojhCOQ9JNZJleaX2cIu9hNyHpR2cobRUI2Qg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 53116
{
"_embedded" : {
"networkList" : [ {
"id" : "035d4c05-4499-4a62-832d-3ea7e6129089",
"ownerIdentityId" : "720bc9cf-3dbd-4b9b-997d-172916db6e8a",
"createdBy" : "720bc9cf-3dbd-4b9b-997d-172916db6e8a",
"createdAt" : "2023-12-04T07:57:26.816807Z",
"updatedAt" : "2023-12-04T07:57:26.866415Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Upload Test Network",
"networkGroupId" : "81f2b1fe-30b7-4d84-bccb-28b93920e99c",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "2f6c0aef-9623-43c8-9232-a5801cd05808",
"ownerIdentityId" : "720bc9cf-3dbd-4b9b-997d-172916db6e8a",
"networkId" : "035d4c05-4499-4a62-832d-3ea7e6129089",
"domainName" : "f64e0674-1fd1-4f6b-abc1-b068708c769c.sandbox.netfoundry.io",
"alternateDomainName" : null,
"name" : "NCAWSi-testncinstance",
"hostId" : "88f683b4-c3d3-46b0-92db-88e2f43efb1d",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.841855Z",
"updatedAt" : "2023-12-04T07:57:26.854628Z",
"deletedAt" : null,
"createdBy" : "720bc9cf-3dbd-4b9b-997d-172916db6e8a",
"deletedBy" : null,
"softwareDeploymentStateId" : "2b8d9bb5-dc08-43a0-a100-1c9e24652f55"
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/035d4c05-4499-4a62-832d-3ea7e6129089"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/81f2b1fe-30b7-4d84-bccb-28b93920e99c",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=035d4c05-4499-4a62-832d-3ea7e6129089"
}
}
}, {
"id" : "117f3ef4-291e-4f20-9c4b-cca5634061cf",
"ownerIdentityId" : "05af9976-49fb-4992-b08f-674e5e072d93",
"createdBy" : "05af9976-49fb-4992-b08f-674e5e072d93",
"createdAt" : "2023-12-04T07:57:26.421889Z",
"updatedAt" : "2023-12-04T07:57:26.422479Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2477",
"networkGroupId" : "ae750263-15d0-46ef-aa04-ff677d104620",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "e166ac55-21c6-4250-83fc-0c51e0e62691",
"ownerIdentityId" : "05af9976-49fb-4992-b08f-674e5e072d93",
"networkId" : "117f3ef4-291e-4f20-9c4b-cca5634061cf",
"domainName" : "e166ac55-21c6-4250-83fc-0c51e0e62691.nf.io",
"alternateDomainName" : null,
"name" : "network-2477-nc",
"hostId" : "354eb704-b982-4134-9cd1-cb7cf42006f2",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.423678Z",
"updatedAt" : "2023-12-04T07:57:26.424079Z",
"deletedAt" : null,
"createdBy" : "05af9976-49fb-4992-b08f-674e5e072d93",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/ae750263-15d0-46ef-aa04-ff677d104620",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=117f3ef4-291e-4f20-9c4b-cca5634061cf"
}
}
}, {
"id" : "12fedd5d-ca96-4272-a72e-4cd321b263ae",
"ownerIdentityId" : "bb25089b-ef4c-40bb-9fbb-f39733c4a31e",
"createdBy" : "bb25089b-ef4c-40bb-9fbb-f39733c4a31e",
"createdAt" : "2023-12-04T07:57:26.513009Z",
"updatedAt" : "2023-12-04T07:57:26.561784Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Test Network Yaml",
"networkGroupId" : "ae750263-15d0-46ef-aa04-ff677d104620",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "3f54cd6e-a894-42d7-a133-19b45267dad5",
"ownerIdentityId" : "bb25089b-ef4c-40bb-9fbb-f39733c4a31e",
"networkId" : "12fedd5d-ca96-4272-a72e-4cd321b263ae",
"domainName" : "4f9e33fa-80fa-4279-b5ab-6486eeae8d68.sandbox.netfoundry.io",
"alternateDomainName" : null,
"name" : "NCAWSi-testncinstance",
"hostId" : "8ece308f-a76a-470b-a43d-7049e454b5f2",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.537338Z",
"updatedAt" : "2023-12-04T07:57:26.549125Z",
"deletedAt" : null,
"createdBy" : "bb25089b-ef4c-40bb-9fbb-f39733c4a31e",
"deletedBy" : null,
"softwareDeploymentStateId" : "8f102345-8304-476f-954d-4ba6d6c5c9df"
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/ae750263-15d0-46ef-aa04-ff677d104620",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=12fedd5d-ca96-4272-a72e-4cd321b263ae"
}
}
}, {
"id" : "1aa62176-1f81-4d60-b05d-dc39989d9dfa",
"ownerIdentityId" : "6c54c030-8fce-47bb-aa80-d4f86f3f992c",
"createdBy" : "6c54c030-8fce-47bb-aa80-d4f86f3f992c",
"createdAt" : "2023-12-04T07:57:26.942907Z",
"updatedAt" : "2023-12-04T07:57:26.943959Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2497",
"networkGroupId" : "dd55a491-6341-494b-9fdf-dbfb8eab176c",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "09ce472e-19cc-4ce6-b7c0-5c1f4e1055a0",
"ownerIdentityId" : "6c54c030-8fce-47bb-aa80-d4f86f3f992c",
"networkId" : "1aa62176-1f81-4d60-b05d-dc39989d9dfa",
"domainName" : "09ce472e-19cc-4ce6-b7c0-5c1f4e1055a0.nf.io",
"alternateDomainName" : null,
"name" : "network-2497-nc",
"hostId" : "d7a93940-18fd-4eee-a715-60236ad41d29",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.945119Z",
"updatedAt" : "2023-12-04T07:57:26.945581Z",
"deletedAt" : null,
"createdBy" : "6c54c030-8fce-47bb-aa80-d4f86f3f992c",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/dd55a491-6341-494b-9fdf-dbfb8eab176c",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=1aa62176-1f81-4d60-b05d-dc39989d9dfa"
}
}
}, {
"id" : "551e706e-f75f-4642-822d-fb92339c0b81",
"ownerIdentityId" : "e260bd82-ee4a-4c22-a51d-0534aeda1e70",
"createdBy" : "e260bd82-ee4a-4c22-a51d-0534aeda1e70",
"createdAt" : "2023-12-04T07:57:27.053961Z",
"updatedAt" : "2023-12-04T07:57:27.054492Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2510",
"networkGroupId" : "f03c1751-0f83-4bd4-a31c-2e5ba65924c7",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "641851cf-953a-4779-8267-930d0a6743ec",
"ownerIdentityId" : "e260bd82-ee4a-4c22-a51d-0534aeda1e70",
"networkId" : "551e706e-f75f-4642-822d-fb92339c0b81",
"domainName" : "641851cf-953a-4779-8267-930d0a6743ec.nf.io",
"alternateDomainName" : null,
"name" : "network-2510-nc",
"hostId" : "361e7612-7acb-4583-8df1-9e17c71637b3",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:27.055524Z",
"updatedAt" : "2023-12-04T07:57:27.055880Z",
"deletedAt" : null,
"createdBy" : "e260bd82-ee4a-4c22-a51d-0534aeda1e70",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/551e706e-f75f-4642-822d-fb92339c0b81"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/f03c1751-0f83-4bd4-a31c-2e5ba65924c7",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=551e706e-f75f-4642-822d-fb92339c0b81"
}
}
}, {
"id" : "a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4",
"ownerIdentityId" : "139d8330-73f7-40a6-9a2f-3f5e69da6417",
"createdBy" : "139d8330-73f7-40a6-9a2f-3f5e69da6417",
"createdAt" : "2023-12-04T07:57:26.271416Z",
"updatedAt" : "2023-12-04T07:57:26.356344Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "suspend-test",
"networkGroupId" : "dd0a8de1-d072-4f56-acfc-35f353cbd423",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "SUSPENDED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "2f194d41-b288-4812-87ab-23021cda028b",
"ownerIdentityId" : "139d8330-73f7-40a6-9a2f-3f5e69da6417",
"networkId" : "a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4",
"domainName" : "2f194d41-b288-4812-87ab-23021cda028b.nf.io",
"alternateDomainName" : null,
"name" : "suspend-test-nc",
"hostId" : "7b7612f5-fbe6-4aa8-b1f4-adefcdaf6046",
"status" : "SUSPENDED",
"createdAt" : "2023-12-04T07:57:26.272485Z",
"updatedAt" : "2023-12-04T07:57:26.366193Z",
"deletedAt" : null,
"createdBy" : "139d8330-73f7-40a6-9a2f-3f5e69da6417",
"deletedBy" : null,
"softwareDeploymentStateId" : "a8f41aaa-088b-4fd4-9d66-8c6020837d5f"
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/dd0a8de1-d072-4f56-acfc-35f353cbd423",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=a9963d6e-7a3e-4ecf-ba15-e0f99ea6e5c4"
}
}
}, {
"id" : "c939c21e-f6f6-41f2-af96-41c9f1b89e34",
"ownerIdentityId" : "c316a904-cb59-42f6-ad98-1280a4075237",
"createdBy" : "c316a904-cb59-42f6-ad98-1280a4075237",
"createdAt" : "2023-12-04T07:57:26.727967Z",
"updatedAt" : "2023-12-04T07:57:26.728549Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2492",
"networkGroupId" : "81f2b1fe-30b7-4d84-bccb-28b93920e99c",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "1eb59faa-c2be-403a-abc3-2c6014ff33f5",
"ownerIdentityId" : "c316a904-cb59-42f6-ad98-1280a4075237",
"networkId" : "c939c21e-f6f6-41f2-af96-41c9f1b89e34",
"domainName" : "1eb59faa-c2be-403a-abc3-2c6014ff33f5.nf.io",
"alternateDomainName" : null,
"name" : "network-2492-nc",
"hostId" : "f655ed7d-277f-4c4f-8b8e-122863795196",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.729940Z",
"updatedAt" : "2023-12-04T07:57:26.730382Z",
"deletedAt" : null,
"createdBy" : "c316a904-cb59-42f6-ad98-1280a4075237",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/81f2b1fe-30b7-4d84-bccb-28b93920e99c",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=c939c21e-f6f6-41f2-af96-41c9f1b89e34"
}
}
}, {
"id" : "cba4ca9c-67c2-4808-80ac-98e82ec4157e",
"ownerIdentityId" : "638f156f-5f73-4327-9cb9-6b876bce0101",
"createdBy" : "638f156f-5f73-4327-9cb9-6b876bce0101",
"createdAt" : "2023-12-04T07:57:26.674202Z",
"updatedAt" : "2023-12-04T07:57:26.674975Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2487",
"networkGroupId" : "5eb2d374-4951-4fc1-aa5b-ec40f4de4016",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "b558b76a-07b8-4ad7-8bf9-1b6cf1ace5fd",
"ownerIdentityId" : "638f156f-5f73-4327-9cb9-6b876bce0101",
"networkId" : "cba4ca9c-67c2-4808-80ac-98e82ec4157e",
"domainName" : "b558b76a-07b8-4ad7-8bf9-1b6cf1ace5fd.nf.io",
"alternateDomainName" : null,
"name" : "network-2487-nc",
"hostId" : "28b8cdff-1a08-4139-ac87-0300ed5ec945",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.676426Z",
"updatedAt" : "2023-12-04T07:57:26.677326Z",
"deletedAt" : null,
"createdBy" : "638f156f-5f73-4327-9cb9-6b876bce0101",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/5eb2d374-4951-4fc1-aa5b-ec40f4de4016",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
}
}
}, {
"id" : "d7324cef-07dc-4a6a-b3cd-05de165b5a14",
"ownerIdentityId" : "bd3dcb43-999e-4e51-b9df-890c4cc62980",
"createdBy" : "bd3dcb43-999e-4e51-b9df-890c4cc62980",
"createdAt" : "2023-12-04T07:57:26.949141Z",
"updatedAt" : "2023-12-04T07:57:27.016131Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "resume-test",
"networkGroupId" : "6e928bf9-e5d0-43df-af39-056f9f405f20",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "4df179c7-d243-4135-a82b-1ba95e676e25",
"ownerIdentityId" : "bd3dcb43-999e-4e51-b9df-890c4cc62980",
"networkId" : "d7324cef-07dc-4a6a-b3cd-05de165b5a14",
"domainName" : "new-domain.nf.io",
"alternateDomainName" : null,
"name" : "resume-test-nc",
"hostId" : "c55355c1-03c0-42a5-bd9b-354163132254",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.951566Z",
"updatedAt" : "2023-12-04T07:57:26.993829Z",
"deletedAt" : null,
"createdBy" : "bd3dcb43-999e-4e51-b9df-890c4cc62980",
"deletedBy" : null,
"softwareDeploymentStateId" : "318fc449-dcae-47d8-b7ba-539b8fc40e06"
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/6e928bf9-e5d0-43df-af39-056f9f405f20",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=d7324cef-07dc-4a6a-b3cd-05de165b5a14"
}
}
}, {
"id" : "ee6b7ba7-188d-4851-afae-9ecde2e135d2",
"ownerIdentityId" : "d2565445-7e8a-4504-8926-226d8f752df5",
"createdBy" : "d2565445-7e8a-4504-8926-226d8f752df5",
"createdAt" : "2023-12-04T07:57:26.262962Z",
"updatedAt" : "2023-12-04T07:57:26.264046Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2464",
"networkGroupId" : "4f07934d-f67a-416b-880e-d148424bb8c9",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "43d91058-e0d5-49a3-ac03-79697023334f",
"ownerIdentityId" : "d2565445-7e8a-4504-8926-226d8f752df5",
"networkId" : "ee6b7ba7-188d-4851-afae-9ecde2e135d2",
"domainName" : "43d91058-e0d5-49a3-ac03-79697023334f.nf.io",
"alternateDomainName" : null,
"name" : "network-2464-nc",
"hostId" : "3e024561-4f41-4639-a259-d45b3aedcc49",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.265608Z",
"updatedAt" : "2023-12-04T07:57:26.266169Z",
"deletedAt" : null,
"createdBy" : "d2565445-7e8a-4504-8926-226d8f752df5",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/4f07934d-f67a-416b-880e-d148424bb8c9",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=ee6b7ba7-188d-4851-afae-9ecde2e135d2"
}
}
}, {
"id" : "fb9d69ab-d72d-486e-a63d-03662dca8601",
"ownerIdentityId" : "51d77d0e-a54c-4a57-8ec7-b3265511fcf0",
"createdBy" : "51d77d0e-a54c-4a57-8ec7-b3265511fcf0",
"createdAt" : "2023-12-04T07:57:26.612540Z",
"updatedAt" : "2023-12-04T07:57:26.613201Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2482",
"networkGroupId" : "f1b0a7c3-4f9d-482f-97e6-ad3f527dcec6",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "e842a967-d347-47c1-92a5-a05a68f283c0",
"ownerIdentityId" : "51d77d0e-a54c-4a57-8ec7-b3265511fcf0",
"networkId" : "fb9d69ab-d72d-486e-a63d-03662dca8601",
"domainName" : "e842a967-d347-47c1-92a5-a05a68f283c0.nf.io",
"alternateDomainName" : null,
"name" : "network-2482-nc",
"hostId" : "ab658f28-2ce0-4757-b360-90fb550a8248",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.614770Z",
"updatedAt" : "2023-12-04T07:57:26.615291Z",
"deletedAt" : null,
"createdBy" : "51d77d0e-a54c-4a57-8ec7-b3265511fcf0",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/f1b0a7c3-4f9d-482f-97e6-ad3f527dcec6",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=fb9d69ab-d72d-486e-a63d-03662dca8601"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks"
}
},
"page" : {
"size" : 3500,
"totalElements" : 11,
"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/cba4ca9c-67c2-4808-80ac-98e82ec4157e' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJXa3dzVy1wYnRxeDVTRE0zSHNzN0tBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijc0MDJjNTgxLWI2MmYtNDY1My1hZTdiLTZiNGZkMGZmZGUzZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY0NiwiZXhwIjoxNzAxNjgwMjQ2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjY5ZmMwODRhLTZjZDktNDkyYi1iYjNkLWY0NDY3NzdlMTAwZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY0Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.lqgDfqbHC3iHpf1hcwq-KkFj_sP9a7wV7HZJcc_5N8rzIbc1mQ1bU1STNXzLRisPUkCFxCEeX_bcP---HhYJasa2V4Kvok3rplkPC_PNBpcbTKGkneMrfsGeZV6GV76TDrBLFaM7J6CbZQWHVRcByq6wzGVUfxbFFbtIZhPUxQB7Ly_WZm4EdTNlwsL9JdWsSxk2CXdYm5QP2nglegT21-jf1Pnl239cTh3BqCVor3qFj0A2gxOutc2e07wjjSJTstjsPlyr8A0ArE2znF6xV4hG5LHpnWYa1CtqsjunvjVBMZGR90n6xhgo571hbNAoNDYsyj8jXT5YAae1g_wzag'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 4396
{
"id" : "cba4ca9c-67c2-4808-80ac-98e82ec4157e",
"ownerIdentityId" : "638f156f-5f73-4327-9cb9-6b876bce0101",
"createdBy" : "638f156f-5f73-4327-9cb9-6b876bce0101",
"createdAt" : "2023-12-04T07:57:26.674202Z",
"updatedAt" : "2023-12-04T07:57:26.674975Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-2487",
"networkGroupId" : "5eb2d374-4951-4fc1-aa5b-ec40f4de4016",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "b558b76a-07b8-4ad7-8bf9-1b6cf1ace5fd",
"ownerIdentityId" : "638f156f-5f73-4327-9cb9-6b876bce0101",
"networkId" : "cba4ca9c-67c2-4808-80ac-98e82ec4157e",
"domainName" : "b558b76a-07b8-4ad7-8bf9-1b6cf1ace5fd.nf.io",
"alternateDomainName" : null,
"name" : "network-2487-nc",
"hostId" : "28b8cdff-1a08-4139-ac87-0300ed5ec945",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:57:26.676426Z",
"updatedAt" : "2023-12-04T07:57:26.677326Z",
"deletedAt" : null,
"createdBy" : "638f156f-5f73-4327-9cb9-6b876bce0101",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/5eb2d374-4951-4fc1-aa5b-ec40f4de4016",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=cba4ca9c-67c2-4808-80ac-98e82ec4157e"
}
}
}
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 |
|
domainNameLabel |
String |
true |
|
dnsZoneId |
String |
true |
|
alternateDomainName |
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[].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/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3NHl6dUR5RVRiazFjbldPSkk3SHdBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImRhMjEyMDJmLWI2OWUtNDgwZS04NTFmLTQwMWNkMmNlMjdkMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY0NywiZXhwIjoxNzAxNjgwMjQ3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQxZmYwZTJlLTM2ZTEtNDQ3Mi1iYzM5LTdlZjc5NTczMTViY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY0N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.aQGDU03itBLcZ8KWd90PMzXblVGQin0MgQgTxl5YuMsEN3ipc3d4YDCGJ2C4tMPy_fzcbFg9pJb8APnqbZUqQA_ogbbLkW94DoYTbTCTY4RheTJ6g-NegkDmn9rCFmaa7-RJOmNevYWvjmThFNi9ChUeGEt4ojI6k7mN6PCK4CnA5syhyH8mZTg_MgeHp155hIvEiVfZdzyQMnJnWiCQtFXzQAx8TSbqDLnGAAJYoUhJU_FeULOg2o1AhP6cHsmAhmdK4DNrv2rL0bO5IyTAiGhXT6n4JjGFNwzV_zRz7vdTp8RtN_rD9AAR9hdF4Adr6z5agvwvv__13K5a0TqAXA' \
-d '{"networkGroupId":"57558367-cc94-4f0f-ae85-896d41ed18b1","size":"small","name":"Create Test Network","o365BreakoutCategory":"NONE","provider":"AWS","region":"us-east-1","publicCertEnabled":false,"edgeRouters":[],"edgeRouterPolicies":[],"serviceEdgeRouterPolicies":[],"servicePolicies":[],"services":[],"certificateAuthorities":[],"endpoints":[],"appWans":[],"postureChecks":[]}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 3741
{
"id" : "6166e71e-36c3-46c1-b7bf-5b7771759c53",
"ownerIdentityId" : "da21202f-b69e-480e-851f-401cd2ce27d3",
"createdBy" : "da21202f-b69e-480e-851f-401cd2ce27d3",
"createdAt" : "2023-12-04T07:57:27.315717Z",
"updatedAt" : "2023-12-04T07:57:27.315717Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Create Test Network",
"networkGroupId" : "57558367-cc94-4f0f-ae85-896d41ed18b1",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "us-east-1",
"status" : "PROVISIONING",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/57558367-cc94-4f0f-ae85-896d41ed18b1",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=6166e71e-36c3-46c1-b7bf-5b7771759c53"
}
}
}
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/c28346e0-7d23-4b19-a7c1-9052513309b6' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxZjRQV2lyVnZWNzJOSnFURXVPN2h3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjE4ZDFkMWM2LTFlODktNDNhZC05YWE5LTM0YzUzNjJlY2RlMCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY0OCwiZXhwIjoxNzAxNjgwMjQ4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjY5M2IzZWYzLWY5OTUtNDlkYi1hYzE4LTc3OTVkNWQ1YTk2YlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY0OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.PUQLYI1OSZplSc-1nqx4lOmSijVx9sldcAR-kk7dtxfx9D60JeRWGSEG82J7log3jdFOU88Waz63byGOns2hAypAdYqnZrOwfPGC3cmFAZEiCbvIfhXOpyZCoiAklbyg3bdLkJxdaOKDFi2JMsrV441zVioJEldvJQecyy0OayAqvCWgYvwRXP846DRu5LV1MwvgFfyzSaJwsU0SMK1LubglWLe4XvYFqcHa03ob4S8Cb9SdFtHnHs5vB0I8m6pAP4AqwaY0gwsokij_qjwe6vVIUdb1kBZRPf6ywl_FmXbw2W_tTCp_DmzzWavriZgekrcDfj9INnYa9ud0cbY4zQ'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 3764
{
"id" : "c28346e0-7d23-4b19-a7c1-9052513309b6",
"ownerIdentityId" : "ff171eb3-94d2-4260-9677-bdf02928bd3f",
"createdBy" : "ff171eb3-94d2-4260-9677-bdf02928bd3f",
"createdAt" : "2023-12-04T07:57:28.010894Z",
"updatedAt" : "2023-12-04T07:57:28.032719Z",
"deletedBy" : "18d1d1c6-1e89-43ad-9aa9-34c5362ecde0",
"deletedAt" : null,
"name" : "network-2550",
"networkGroupId" : "0f6f4969-91ff-4af2-afd1-1e0f9105f5f1",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "DELETING",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"dnsZoneId" : null,
"managedJwtConnectionId" : null,
"managedExternalJwtSignerId" : null,
"managedAuthPolicyId" : null,
"o365BreakoutCategory" : "NONE",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/0f6f4969-91ff-4af2-afd1-1e0f9105f5f1",
"profile" : "parent"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=c28346e0-7d23-4b19-a7c1-9052513309b6"
}
}
}
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/e9998ef0-b4cd-4fa0-bfe6-bd8ae6940c4c' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJWRnRFbUZ2Q2FIMU83OHYxMWRDXzNRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImFjMGM1MzAwLWI4YmQtNDkyMS1hMTM3LTJiOWRjNjYzM2ZhYyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjYxMywiZXhwIjoxNzAxNjgwMjEzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImYzZTdhZjJhLTIxMGQtNGFiZS04NmI5LWYzNjQ5NzZjNjVhY1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjYxM31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.BAQ-e5sDpv44vdhCCa-MM6Lg-bDaDeZucJDA71uZbhvEicnerUUIOi3JPLjk66x-CGHZ_wNjxCpKEBZL65ujYGgYYnbaO_V7Su5yjWB88rs2XIMrYcp_CLLKOYAaKBxtP8zH9nheMkJTqJ9REXSx9AlfYoz3x_I0FrJmZhLNPYy8gpPk2_cF3Uf83FZbyBOlw_hUbo5O_EEVW4l1CL3YIoKM1HBZE5OYWYbH4KNVR73SmEjD7mgJk6cyxpD9GAwCPSbGjgnAqNsgPscuHK2ghQvRx4tdlK_d4YOPjPdipYyomu4Cf9-RzUvll8RJxWEpk3GRFw2st3qnualSxCntVg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1508
{
"id" : "e9998ef0-b4cd-4fa0-bfe6-bd8ae6940c4c",
"ownerIdentityId" : "17530b65-727c-42f9-a05e-2c4d464b6ac7",
"networkId" : "3aa8eccb-4030-4e72-b1a5-e744ddc04b59",
"domainName" : "new-domain.nf.io",
"alternateDomainName" : null,
"name" : "networkcontroller-controller-test-nc",
"hostId" : "96c78cec-90e8-4c64-b228-733b8ef3be6a",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:56:51.311025Z",
"updatedAt" : "2023-12-04T07:56:53.224705Z",
"deletedAt" : null,
"createdBy" : "17530b65-727c-42f9-a05e-2c4d464b6ac7",
"deletedBy" : null,
"softwareDeploymentStateId" : "7c68ff92-b585-4cba-b3fd-7fb95f69f088",
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3aa8eccb-4030-4e72-b1a5-e744ddc04b59",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/e9998ef0-b4cd-4fa0-bfe6-bd8ae6940c4c"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/96c78cec-90e8-4c64-b228-733b8ef3be6a"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7c68ff92-b585-4cba-b3fd-7fb95f69f088",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/7c68ff92-b585-4cba-b3fd-7fb95f69f088"
}
}
}
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/e9998ef0-b4cd-4fa0-bfe6-bd8ae6940c4c/session' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJsTFVYUGVETzNidVF6eWhrNFljdGR3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImM5MGI3YTM5LTZiMGQtNDk1MS04ZmQzLTYyNDZkZmEyNWQzOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjYxMSwiZXhwIjoxNzAxNjgwMjExLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImRjODBjOTM0LTUyYTEtNGJhOS1hOWZjLWMwOGYzMGRlODA2MlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjYxMX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.bAfsX0MDUFnTn_iabGXc0lPYZ2WsYkWd6uEjSfKSTfUJaOUL8tzSzVTHWZWhSnIKnKLsTkb2BZlgnK7wLB0_PSlbSw4m29WjbOHQLrMyeBdwGQ5_2HRCCbOk3agtKM_g12lubXrNeE8St7mylj9avUj33DZCnAOrQfx6PNkX17_Ov47CmiTZVH281d7urDrVp_VXVvckMhsy4ar1COZFHbUOwTXGIS8sXm7i2umtJxguAO8l4R-fe2L_UHEu8G51YCJujXTWPJoEgXl88GDjpgoRzXoYjv8kVHJBphiN6XK6mhSUTtmgUTFoVKf5jEcJL0xNodPXyA0w7Bu_jnamHA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 408
{
"sessionToken" : "--- session ---",
"expiresAt" : "2023-12-04T07:56:51.699+00:00",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/e9998ef0-b4cd-4fa0-bfe6-bd8ae6940c4c/session"
},
"parent" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/e9998ef0-b4cd-4fa0-bfe6-bd8ae6940c4c"
}
}
}
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 |
|
name |
String |
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 |
|
publicDomainName |
String |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-controllers?createdAt=%3E%3D2023-12-04T06:54:55.538431215Z' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIwSVRjcDZBS2YzTGYxMWVncE05bE5nIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjdlMDFmYjJiLTRhNGItNDVmMy05ZWU0LWZmMjBlODI2MTdmOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjQ5NSwiZXhwIjoxNzAxNjgwMDk1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImJjMGJhMTNmLTNlZDktNGFjMi05YmY3LTA3NjYwMjlmYTAwOVwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjQ5NX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Qe6ssUP0rgl3nNDxvbuj_wKP51N1dBxh49NDtbrYjo4XqCMZQHyLyZg1H_Obl1m1XczpHnBNd2lxQgmhcvKm2_zUdZDzRlOAYO9Wf5ZaTeera7mRklL4HpcpB7u5pQ7-_WHQLCMXogh3oSGRswsmHdvXq2enpm6nfFbVswtQ3f6lSc2R9zEWiaBFb8yzRjdTzdNowlAbM2OSqUEwcKa-SSsITos9oyo9o5nKxTVpwMtHGo73FOvglgSzMPlu4eFYx_9bT8IDamPNe9HFDCtPtxrb4VpAODCg9hJ0V1pM0t4K27u-VFbIuTB4fN07zD58pR0IYO-jAtX2xC91vcdnBA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 3650
{
"_embedded" : {
"networkControllerList" : [ {
"id" : "060a2b5e-72ca-4b3a-b647-983a0619b908",
"ownerIdentityId" : "39e56488-df38-4e6b-a560-88a65e2433b8",
"networkId" : "eef95e14-e934-4f81-ab68-240134856c97",
"domainName" : "vusiA6y17V8QNPjtEokRF.fake.com",
"alternateDomainName" : null,
"name" : "NetworkController Find Test 2 - NC",
"hostId" : "a0784438-c935-49f2-9bf5-f2b7bdf6cf3d",
"status" : "PROVISIONING",
"createdAt" : "2023-12-04T07:54:55.499661Z",
"updatedAt" : "2023-12-04T07:54:56.084840Z",
"deletedAt" : null,
"createdBy" : "39e56488-df38-4e6b-a560-88a65e2433b8",
"deletedBy" : null,
"softwareDeploymentStateId" : "a17de7f7-32cf-4cbd-87b6-6da16ffc563d",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/060a2b5e-72ca-4b3a-b647-983a0619b908"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/eef95e14-e934-4f81-ab68-240134856c97",
"profile" : "parent"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a0784438-c935-49f2-9bf5-f2b7bdf6cf3d"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/a17de7f7-32cf-4cbd-87b6-6da16ffc563d",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/a17de7f7-32cf-4cbd-87b6-6da16ffc563d"
}
}
}, {
"id" : "1171dd22-3db6-4f9b-a4e1-d3a051afa543",
"ownerIdentityId" : "39e56488-df38-4e6b-a560-88a65e2433b8",
"networkId" : "0ca05f58-81ab-49f6-8c9c-f8df7ebe0ab9",
"domainName" : "JK3rXUCv8OtQkI_NCEJ2Y.fake.com",
"alternateDomainName" : null,
"name" : "NetworkController Find Test 1 - NC",
"hostId" : "006dbd94-29bb-4d89-a0a8-d54c8de81906",
"status" : "PROVISIONED",
"createdAt" : "2023-12-04T07:54:55.495410Z",
"updatedAt" : "2023-12-04T07:54:56.039027Z",
"deletedAt" : null,
"createdBy" : "39e56488-df38-4e6b-a560-88a65e2433b8",
"deletedBy" : null,
"softwareDeploymentStateId" : "ea859f55-8abf-4276-95c4-044140687af1",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/1171dd22-3db6-4f9b-a4e1-d3a051afa543"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0ca05f58-81ab-49f6-8c9c-f8df7ebe0ab9",
"profile" : "parent"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/006dbd94-29bb-4d89-a0a8-d54c8de81906"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ea859f55-8abf-4276-95c4-044140687af1",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ea859f55-8abf-4276-95c4-044140687af1"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?createdAt=%3E%3D2023-12-04T06:54:55.538431215Z"
}
},
"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 |
|
interceptConflicts |
Array[Object] |
true |
|
interceptConflicts[].fromServicePolicyId |
String |
true |
|
interceptConflicts[].fromServicePolicyName |
String |
true |
|
interceptConflicts[].toServicePolicyId |
String |
true |
|
interceptConflicts[].toServicePolicyName |
String |
true |
|
interceptConflicts[].conflictingServiceInfo |
Array[Object] |
true |
|
interceptConflicts[].conflictingServiceInfo[].fromServiceId |
String |
true |
|
interceptConflicts[].conflictingServiceInfo[].fromServiceName |
String |
true |
|
interceptConflicts[].conflictingServiceInfo[].toServiceId |
String |
true |
|
interceptConflicts[].conflictingServiceInfo[].toServiceName |
String |
true |
|
loopbackConflicts |
Array[Object] |
true |
|
loopbackConflicts[].fromServicePolicyId |
String |
true |
|
loopbackConflicts[].fromServicePolicyName |
String |
true |
|
loopbackConflicts[].toServicePolicyId |
String |
true |
|
loopbackConflicts[].toServicePolicyName |
String |
true |
|
loopbackConflicts[].conflictingServiceInfo |
Array[Object] |
true |
|
loopbackConflicts[].conflictingServiceInfo[].fromServiceId |
String |
true |
|
loopbackConflicts[].conflictingServiceInfo[].fromServiceName |
String |
true |
|
loopbackConflicts[].conflictingServiceInfo[].toServiceId |
String |
true |
|
loopbackConflicts[].conflictingServiceInfo[].toServiceName |
String |
true |
|
mfaEnabled |
Boolean |
true |
|
managedBy |
String |
true |
|
jwtExpiresAt |
String |
true |
|
jwt |
String |
true |
|
online |
Boolean |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/endpoints' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJyZFZLS05fMVlsN0NZcW04c1Bod0FBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImQ1ZjM2MmYxLTUzODYtNDcyOS1hMmE3LTY2OWEwOGNlNDdhMSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU4MCwiZXhwIjoxNzAxNjgwMTgwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImU3OTBiYjI5LTM5YmItNDdjYy05OGIwLWMxYmFjY2FjNWMyZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU4MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Hlb3vtXjY8LSS0-gbr2AmVpkvz67qj82ahugmnBDYzgEUy1eccbmCwPt08E5dt0eLU9X6u2liuRe4kvIyMs8w8CYJkrcITrEP0p5V5Hqz9t3yb2LJYqKQPsTOvDaf_Lf6TyMzmf4lX5lrTbrgT83D2igTB322n2y6wouX1HOZvEX_fnNMjoIUDOyjyC_55mLY1p7W96sASOomdEyNhe292LAvlvfyg9zzVcjvfn3VCPl3biGYuCBVABWFwtyLJw9kj7r4AIWZtdwZyHSUM_KOuOvfAHsgTAvZ1lwU-Jmr7knODe7ZaX4rQQDiiEA4w1x2g-zpb_p7auDXSJF7dMcOA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 6309
{
"_embedded" : {
"endpointList" : [ {
"id" : "151aa600-bf88-47c8-a7c3-413a9ebeee9c",
"ownerIdentityId" : "0e5b42d0-1112-4e82-87af-3928be1990a8",
"createdBy" : "0e5b42d0-1112-4e82-87af-3928be1990a8",
"createdAt" : "2023-12-04T07:56:20.215235Z",
"updatedAt" : "2023-12-04T07:56:20.215235Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "57fa9e1d-5fd0-4f80-af24-25140db266e8",
"zitiId" : "ziti-id-1531",
"name" : "oLc6mpyZWUtnuNiVkJ-OE",
"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" : [ ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"jwt" : null,
"online" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/151aa600-bf88-47c8-a7c3-413a9ebeee9c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/57fa9e1d-5fd0-4f80-af24-25140db266e8",
"profile" : "parent"
}
}
}, {
"id" : "41dcd0e5-728a-4a2f-8409-66dde88b82fb",
"ownerIdentityId" : "66651115-a5c3-44dd-a88c-3d97c990dbc8",
"createdBy" : "66651115-a5c3-44dd-a88c-3d97c990dbc8",
"createdAt" : "2023-12-04T07:56:20.209926Z",
"updatedAt" : "2023-12-04T07:56:20.209926Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "57fa9e1d-5fd0-4f80-af24-25140db266e8",
"zitiId" : "ziti-id-1524",
"name" : "endpoint-1523",
"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" : [ ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"jwt" : null,
"online" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/41dcd0e5-728a-4a2f-8409-66dde88b82fb"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/57fa9e1d-5fd0-4f80-af24-25140db266e8",
"profile" : "parent"
}
}
}, {
"id" : "e59f9752-426c-4d99-a939-1658bfe74892",
"ownerIdentityId" : "b719cc67-8270-4e93-8343-8642dddf9827",
"createdBy" : "b719cc67-8270-4e93-8343-8642dddf9827",
"createdAt" : "2023-12-04T07:56:20.093133Z",
"updatedAt" : "2023-12-04T07:56:20.093133Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "cd3851df-c1e2-4cbb-81f3-4e5f7c6a14e3",
"zitiId" : "ziti-id-1497",
"name" : "endpoint-1496",
"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" : [ ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"jwt" : null,
"online" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/e59f9752-426c-4d99-a939-1658bfe74892"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/cd3851df-c1e2-4cbb-81f3-4e5f7c6a14e3",
"profile" : "parent"
}
}
}, {
"id" : "f866e696-e064-4394-b12a-f81c05afdf31",
"ownerIdentityId" : "aff595e4-2bdd-4faa-b3a6-9fa5ea88176d",
"createdBy" : "aff595e4-2bdd-4faa-b3a6-9fa5ea88176d",
"createdAt" : "2023-12-04T07:56:20.124508Z",
"updatedAt" : "2023-12-04T07:56:20.124508Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "a0f570b5-bd87-453c-af98-846c952b2d73",
"zitiId" : "f6ad6af8-f030-4e24-a86e-e57452318d6f",
"name" : "Refresh Success Endpoint",
"typeId" : "Default",
"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" : [ ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"jwt" : null,
"online" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/f866e696-e064-4394-b12a-f81c05afdf31"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a0f570b5-bd87-453c-af98-846c952b2d73",
"profile" : "parent"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints"
}
},
"page" : {
"size" : 3500,
"totalElements" : 4,
"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/ff75b3b1-19f4-49db-9878-b6a66c73f7e5' -i -X GET \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJvTTRPb2ZqUGdsSUtaNHVDLTlzdXRBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImYwZGI3OTU5LWYyODktNDIxZC1hOWJmLTY1YmQ2OGY0NDE3NSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU4MiwiZXhwIjoxNzAxNjgwMTgyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImE1ZmRiZjZjLTgzZTUtNDZiNy05YmY5LWVmNDFjOGY0NmZkM1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU4Mn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.YVanzZzCxJsAGMXpBpyT_6O17VefN5WDMKO1x64h2J66xqDWdCRB6IjB-2yicwCUEvlZ9nspaE9XwA_yj3HdkFckN91zPSRF_sq6Xo_h1U0LknVeaPM8qQnHK4_JPytZQQWAKeQ6SyDmJsZq5xa-COzXLxP_yJpp6BoMbkRTFBeoR2RgkQyOj0BQHvKTRHLcXOnv6QQcNuaLP6TG0RfkXDByh7iUjAfIGYzlYM1b66eT2sWegGZzZppBKsLg3NbUg4oXErsbnrKtlzPqwiZYABdmofTiaITiaZnqmrkup9xu5EmLHytYT9KJM6ib2Z9leFEuWR4K3kXl76I_sDTuXw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1321
{
"id" : "ff75b3b1-19f4-49db-9878-b6a66c73f7e5",
"ownerIdentityId" : "86d4040a-d9ff-4a62-8fde-a282620ad917",
"createdBy" : "86d4040a-d9ff-4a62-8fde-a282620ad917",
"createdAt" : "2023-12-04T07:56:22.830728Z",
"updatedAt" : "2023-12-04T07:56:22.830728Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "164c3684-6190-4f05-bb55-9454d76a55cc",
"zitiId" : "ziti-id-1698",
"name" : "endpoint-1697",
"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" : [ ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"jwt" : null,
"online" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/ff75b3b1-19f4-49db-9878-b6a66c73f7e5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/164c3684-6190-4f05-bb55-9454d76a55cc",
"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 |
|
interceptConflicts |
Array[Object] |
true |
|
interceptConflicts[].fromServicePolicyId |
String |
true |
|
interceptConflicts[].fromServicePolicyName |
String |
true |
|
interceptConflicts[].toServicePolicyId |
String |
true |
|
interceptConflicts[].toServicePolicyName |
String |
true |
|
interceptConflicts[].conflictingServiceInfo |
Array[Object] |
true |
|
interceptConflicts[].conflictingServiceInfo[].fromServiceId |
String |
true |
|
interceptConflicts[].conflictingServiceInfo[].fromServiceName |
String |
true |
|
interceptConflicts[].conflictingServiceInfo[].toServiceId |
String |
true |
|
interceptConflicts[].conflictingServiceInfo[].toServiceName |
String |
true |
|
loopbackConflicts |
Array[Object] |
true |
|
loopbackConflicts[].fromServicePolicyId |
String |
true |
|
loopbackConflicts[].fromServicePolicyName |
String |
true |
|
loopbackConflicts[].toServicePolicyId |
String |
true |
|
loopbackConflicts[].toServicePolicyName |
String |
true |
|
loopbackConflicts[].conflictingServiceInfo |
Array[Object] |
true |
|
loopbackConflicts[].conflictingServiceInfo[].fromServiceId |
String |
true |
|
loopbackConflicts[].conflictingServiceInfo[].fromServiceName |
String |
true |
|
loopbackConflicts[].conflictingServiceInfo[].toServiceId |
String |
true |
|
loopbackConflicts[].conflictingServiceInfo[].toServiceName |
String |
true |
|
mfaEnabled |
Boolean |
true |
|
jwt |
String |
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.eyJqdGkiOiJpTVN3cHdaNUJmZEQ5bXZPM216VmxBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjJiZjJlMjA5LWRhNTgtNDVjNC1iMDExLWNmNmMxMjk1YzU3MyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjQ2NywiZXhwIjoxNzAxNjgwMDY3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjM2N2Q3NjY2LWVmYmUtNGUzMy1hOThmLWRkZWM3Y2NiYWE5Y1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjQ2N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.LdGDLtdZKI9twdMAKQmfrumLDO1_5ebsY-udau31SFJXefLRPN-nFaizj0yFFDfISbwnQYCzzd75x2KDMfn8Mm5A2RvsDxSYfZGw_SoYsSIcWiqw-dJUBhNedNTw7OzSqRHTCxQsoVqrh853PmMMyDabIdd-lH-LPJB5ySLhgDN7Ri9wZ15HZ-xDcx3r1e-zBMcuD89Yv53aOqQCTNm0nLPUsue5_obtT1AGlWO1VLbD2yn9o9mIed6wvD5GwmEWBB4mFEtjaLtE4xJLI72nLo4HuGm1mdiGnR6mP3s-k5qSZun-Y2f8eKZMtgg_0Bi5cPNK1Digo-XlyVmRXyDmZQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 3573
{
"_embedded" : {
"endpointList" : [ {
"id" : "34c03627-e332-409d-9ca7-f0b7ce7a34dc",
"ownerIdentityId" : "7657f8de-d272-46b7-870b-d1307bfb1a2b",
"createdBy" : "7657f8de-d272-46b7-870b-d1307bfb1a2b",
"createdAt" : "2023-12-04T07:54:27.123767Z",
"updatedAt" : "2023-12-04T07:54:27.123767Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "917f1708-4e9a-465b-995f-22c3b7984dbd",
"zitiId" : "ziti-id-188",
"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" : "9f7f9b04-1e2d-4828-8fa4-17a2a5010353",
"syncResourceId" : "PZoGLyN3uc8xbAft6Qict",
"attributes" : [ "#attr2", "#attr1" ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"jwt" : null,
"online" : false,
"managedBy" : "Sync",
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/917f1708-4e9a-465b-995f-22c3b7984dbd",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/34c03627-e332-409d-9ca7-f0b7ce7a34dc"
},
"auth-policy" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/auth-policies/9ac43098-774c-4a08-adc3-6517318004ce"
}
}
}, {
"id" : "79394baa-93e6-444b-ba18-a6712b6d2e40",
"ownerIdentityId" : "7657f8de-d272-46b7-870b-d1307bfb1a2b",
"createdBy" : "7657f8de-d272-46b7-870b-d1307bfb1a2b",
"createdAt" : "2023-12-04T07:54:27.126746Z",
"updatedAt" : "2023-12-04T07:54:27.126746Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "917f1708-4e9a-465b-995f-22c3b7984dbd",
"zitiId" : "ziti-id-190",
"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" : "6a4b9f23-26de-4253-beb4-adb4f1fbdd0c",
"syncResourceId" : "N0NsFhBPNeW9NCcQlhgdS",
"attributes" : [ "#attr3", "#attr1" ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"jwt" : null,
"online" : false,
"managedBy" : "Sync",
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/917f1708-4e9a-465b-995f-22c3b7984dbd",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/79394baa-93e6-444b-ba18-a6712b6d2e40"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints"
}
},
"page" : {
"size" : 3500,
"totalElements" : 2,
"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.eyJqdGkiOiJuNFM0aU5zbEt0MXBycGtCUW5NM19nIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImMwY2Y3MjYwLWIyYTEtNDFkNC05Y2JkLTdiN2JmODM4MzRjZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU4MSwiZXhwIjoxNzAxNjgwMTgxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImM1YWI5ZDQ2LTBiZDItNDM4OS1iZWM4LWRkZmEyMDYyMDc2MlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU4MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.pPzUKjj6_bpfam8H6j98-J7EN_QD40hrAWMQqTlokj8MGqUjJxviLOkskDK3oRjAIoAmohrx2BZvC1TyrKH9VshM22UdzkH1bK5h7z-0lQOlg5nH4m_zMOCnnjP9-oXItB6_Ywg93dfF796r6N1WQocd3kPGiD2JPuyOC9xW0EjkosGmWDuFA9wvlSAAEOKvX6cvG6bb6uIdPVfCsjx-6YTHN9SCIZaGUCgTx5gdTJdQ5-cbv29IXkgaGm7HRL0Q_lUTJzb0svnEKEiRPXWttAxikMgFr7fDCPO6de1WQYtBh2VyatrzGRD5HnLugP7lgNzvwL14-K3ByXWRxqYlRA' \
-d '{"networkId":"7065f65e-477a-4e88-b704-766dead9fed7","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: 1377
{
"id" : "ee6e31de-3f71-4a57-8132-09db641c4d35",
"ownerIdentityId" : "c0cf7260-b2a1-41d4-9cbd-7b7bf83834ce",
"createdBy" : "c0cf7260-b2a1-41d4-9cbd-7b7bf83834ce",
"createdAt" : "2023-12-04T07:56:21.230313Z",
"updatedAt" : "2023-12-04T07:56:21.254667Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "7065f65e-477a-4e88-b704-766dead9fed7",
"zitiId" : "e326205a-5cea-487e-907e-75e390b06c91",
"name" : "Test endpoint 02",
"typeId" : null,
"appId" : "appId01",
"appVersion" : "appVersion01",
"branch" : "branch",
"revision" : "rev01",
"type" : "device",
"version" : "version100",
"arch" : "arch",
"os" : "osd01",
"osRelease" : "osrev01",
"osVersion" : "ver01",
"hasApiSession" : null,
"hasEdgeRouterConnection" : null,
"lastOnlineAt" : null,
"syncId" : null,
"syncResourceId" : null,
"attributes" : [ ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : "2023-12-04T07:56:21.164672Z",
"jwt" : "jwthere",
"online" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/ee6e31de-3f71-4a57-8132-09db641c4d35"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/7065f65e-477a-4e88-b704-766dead9fed7",
"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/eceda341-0f8e-4fb1-afa4-280826487e34' -i -X PATCH \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJOQUFOM0VabkhqUGt6YzlKNzdISTJnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjdmYmQxYTMxLTQxYTQtNGY3MC1iOWYyLTg5Yzg2Y2IyZGJkYiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU4MiwiZXhwIjoxNzAxNjgwMTgyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjE5NWE3YzBhLTZkYjgtNDY2Yi04ZGI3LTgxZGMyOWM1ZGUyM1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU4Mn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.r-HRELzIxT8t74lvcTSKiZ8slGkBYdABtHeXaPoxJgrOPGvS9IQpJo3QDckpE0Xdi5wbDQYRT-AVrnd12voC5J6FVkE49P9qpG384OTnHXP0F9lFM7x1IfHmMrUBhz8iM1vzhm6OeEI-PDxPW-TNfk7Lq0y8_jUCNzPgadIqAPj8pXEaJQPCbw_-WX21HwVjzBy6_KW2F9vexwxsYRJbT_FBe1tH2i56KbhlecctBSUtJek0nolaEPxwYsiHlSDUCd9QnVuv4Qfl2Y5eyavfktw2EihAKyPXDycMFZ09MA-t6NHjA9lmV7YO8e7Qs2SwMSmX09hVXFBIYl7PSsiecw' \
-d '{"name":"Test endpoint 02 updated"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1332
{
"id" : "eceda341-0f8e-4fb1-afa4-280826487e34",
"ownerIdentityId" : "19259d10-a7e3-4c9d-978b-4dee8bcd5f5a",
"createdBy" : "19259d10-a7e3-4c9d-978b-4dee8bcd5f5a",
"createdAt" : "2023-12-04T07:56:22.444976Z",
"updatedAt" : "2023-12-04T07:56:22.586792Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "52fd76ae-b1b0-44b2-8265-5abcc2e44ac4",
"zitiId" : "ziti-id-1678",
"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" : [ ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"jwt" : null,
"online" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/eceda341-0f8e-4fb1-afa4-280826487e34"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/52fd76ae-b1b0-44b2-8265-5abcc2e44ac4",
"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/e174ec16-f44a-4c21-aea6-2859ead016e1' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJjU19qOTV4aXU2YjBWRWEtWEdvN19nIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImM4MGY2ZmU5LTEyOGItNDBhYS05ZTAwLTQyZGM5MzBlM2YyMSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU4MywiZXhwIjoxNzAxNjgwMTgzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjYyZjdjNmQwLWI1MTQtNGY0Ni05NTI3LWQ1MWI1YjgwZmJhZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU4M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.O-vLL7tbQ4278uLJeO4ncClx3siG3Ux1c4Mqluho2xj5lRfy7nvVnci14GlVEehioT1zR6sJSgctEEXnQjMR7E6agTgJqHlGz5t8FAU1oOi2iLXJkI3L1xEHgR7AlK9qQtQD7zMkl0qJbixOZE74n6noXoB15U6A1Rlub4WOrQKhLchRSnovE8nKZ0bwzRxzbWdY26gQj35CG5NgZDkJ-kqRz62dZXP5_d_1I5sosuQZbI1Zi8lstg_d17V9H6iw3P3Mxxgx9JMTchYUwv5-a2vKuYvxjhExTJyDPn2EgsJDfQZDiywXaQu60JcsBDy7FfHQlFvu8wzWFoKYqH31YQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1377
{
"id" : "e174ec16-f44a-4c21-aea6-2859ead016e1",
"ownerIdentityId" : "a72a2258-c939-4dde-ad11-ba3c4b6aec98",
"createdBy" : "a72a2258-c939-4dde-ad11-ba3c4b6aec98",
"createdAt" : "2023-12-04T07:56:23.165606Z",
"updatedAt" : "2023-12-04T07:56:23.191018Z",
"deletedBy" : "c80f6fe9-128b-40aa-9e00-42dc930e3f21",
"deletedAt" : "2023-12-04T07:56:23.190Z",
"networkId" : "b59d311e-98e9-4725-9224-f0cccee006ce",
"zitiId" : "ziti-id-1741",
"name" : "endpoint-1740",
"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" : [ ],
"interceptConflicts" : [ ],
"loopbackConflicts" : [ ],
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"jwt" : null,
"online" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/e174ec16-f44a-4c21-aea6-2859ead016e1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b59d311e-98e9-4725-9224-f0cccee006ce",
"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.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.eyJqdGkiOiIzajVwQ1NqbFF3MWJ0OVpSLUI5TkR3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjgzYzE0M2I3LWEyYmMtNDY3Yi04ODM3LThlZGIwNDM5OWU0OSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU1MSwiZXhwIjoxNzAxNjgwMTUxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImY1MzcyNjkzLTYzMGYtNDAxMC1iNmRhLWRmOGRiODVjYWExZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU1MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.bANanpCwTXgzRS2trbgdg4xT6hDqUGXVqDhMmgG1fC3dj6BpLu_SXbozgRZog-zF9sW5ZEyohUOzLDDiZk4HE8-Jbo0EWF-mEsjiK-PSV11nUedJ_xuY6XjAux85cWR1_bdn_GXKzicpjZri8Zd3iFWlDq0U_boiSto2Kat3rZ1ZG0LOMxnBr_PLZag3sp4HPQhLmR_S-kNHIkz38TIYNBFc1OM7ox2Ke35F66-l_9qQDmIuIa4mfEVKNdx2hsmX5XLEXF57GWj-zmH0R-sk9HZ9yvoBd_uWcdHwFB7bzx7lE3B53GYwGeXNDM4Ax3naq_p95pTfkGYHIK2hlYpWdQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 215194
{
"_embedded" : {
"edgeRouterList" : [ {
"id" : "0431a385-5def-4fd1-93db-ae076a403ef9",
"hostId" : "42e37db3-40be-47ce-ae94-1aca9b29704e",
"ownerIdentityId" : "f295b08c-7331-44d5-ad86-8ecf4cc4c688",
"createdBy" : "f295b08c-7331-44d5-ad86-8ecf4cc4c688",
"createdAt" : "2023-12-04T07:55:37.773430Z",
"updatedAt" : "2023-12-04T07:55:37.773430Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-823",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-822",
"productVersion" : "7.3.36",
"networkId" : "fad83308-7117-485f-ad4d-cc657ca2f238",
"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/42e37db3-40be-47ce-ae94-1aca9b29704e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fad83308-7117-485f-ad4d-cc657ca2f238",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0431a385-5def-4fd1-93db-ae076a403ef9"
}
}
}, {
"id" : "079e5dac-02fc-4347-84d2-1d326bccf4e3",
"hostId" : "9579f26b-abd3-4f31-8395-f36003e3c220",
"ownerIdentityId" : "dcbcce0d-8d87-4900-b858-a4a7c0c12761",
"createdBy" : "dcbcce0d-8d87-4900-b858-a4a7c0c12761",
"createdAt" : "2023-12-04T07:55:44.676793Z",
"updatedAt" : "2023-12-04T07:55:44.676793Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1156",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1155",
"productVersion" : "7.3.36",
"networkId" : "bb492bce-3422-4d1e-a247-b4e82517eb9f",
"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/9579f26b-abd3-4f31-8395-f36003e3c220"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bb492bce-3422-4d1e-a247-b4e82517eb9f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/079e5dac-02fc-4347-84d2-1d326bccf4e3"
}
}
}, {
"id" : "08118aed-f632-45cf-b3c6-2cd0a2f22dee",
"hostId" : "c6d4f62f-9840-4d37-a05f-d037b1d43120",
"ownerIdentityId" : "7f0e0f47-cc1a-46e5-a311-9a88f6351f24",
"createdBy" : "7f0e0f47-cc1a-46e5-a311-9a88f6351f24",
"createdAt" : "2023-12-04T07:55:44.373476Z",
"updatedAt" : "2023-12-04T07:55:44.373476Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1135",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1134",
"productVersion" : "7.3.36",
"networkId" : "adfeee33-4e31-4cb5-985f-349037974476",
"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/c6d4f62f-9840-4d37-a05f-d037b1d43120"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/adfeee33-4e31-4cb5-985f-349037974476",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/08118aed-f632-45cf-b3c6-2cd0a2f22dee"
}
}
}, {
"id" : "084576b4-cde4-4fc3-97a4-8a01a2df7e9b",
"hostId" : "410e14a6-2cd0-4094-8ee7-b7e6c62eb0fb",
"ownerIdentityId" : "d988e91e-7da6-4184-b915-1ecd69d361c3",
"createdBy" : "d988e91e-7da6-4184-b915-1ecd69d361c3",
"createdAt" : "2023-12-04T07:55:47.677795Z",
"updatedAt" : "2023-12-04T07:55:47.677795Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1246",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1245",
"productVersion" : "7.3.36",
"networkId" : "9910e086-2fb8-4c24-8cd9-67b70f0f0b8b",
"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/410e14a6-2cd0-4094-8ee7-b7e6c62eb0fb"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9910e086-2fb8-4c24-8cd9-67b70f0f0b8b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/084576b4-cde4-4fc3-97a4-8a01a2df7e9b"
}
}
}, {
"id" : "09370b8b-f9c5-4bf3-aa40-89ec949aa313",
"hostId" : "f42079d6-2c21-4859-8c9c-636a9f45479c",
"ownerIdentityId" : "096fea86-21ff-456c-8319-888c7fd25cf9",
"createdBy" : "096fea86-21ff-456c-8319-888c7fd25cf9",
"createdAt" : "2023-12-04T07:55:47.120839Z",
"updatedAt" : "2023-12-04T07:55:47.120839Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1201",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1200",
"productVersion" : "7.3.36",
"networkId" : "83a7b480-8e2a-4aea-b190-5117b90566c1",
"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/f42079d6-2c21-4859-8c9c-636a9f45479c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/83a7b480-8e2a-4aea-b190-5117b90566c1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/09370b8b-f9c5-4bf3-aa40-89ec949aa313"
}
}
}, {
"id" : "0939311e-b09a-4cf9-98ba-859886610074",
"hostId" : "7b0f0f7a-a6bb-40ca-943a-29337ba81bdc",
"ownerIdentityId" : "544ecd0a-11c7-41bc-bbb9-35292b7368ff",
"createdBy" : "544ecd0a-11c7-41bc-bbb9-35292b7368ff",
"createdAt" : "2023-12-04T07:55:47.899527Z",
"updatedAt" : "2023-12-04T07:55:47.899527Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1258",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1257",
"productVersion" : "7.3.36",
"networkId" : "a801c478-59fb-4aed-9038-d946750b92b7",
"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/7b0f0f7a-a6bb-40ca-943a-29337ba81bdc"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a801c478-59fb-4aed-9038-d946750b92b7",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0939311e-b09a-4cf9-98ba-859886610074"
}
}
}, {
"id" : "0b45e2fe-88f8-42b8-8219-53fc5ed02c88",
"hostId" : "03189d03-025a-46dc-b1ca-5c821486868b",
"ownerIdentityId" : "1a74d7a9-fca8-4df2-8f09-ab63709c9261",
"createdBy" : "1a74d7a9-fca8-4df2-8f09-ab63709c9261",
"createdAt" : "2023-12-04T07:55:49.643870Z",
"updatedAt" : "2023-12-04T07:55:49.643870Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1333",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1332",
"productVersion" : "7.3.36",
"networkId" : "d38a7770-ca00-409d-9c4b-898874c36e8e",
"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/03189d03-025a-46dc-b1ca-5c821486868b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d38a7770-ca00-409d-9c4b-898874c36e8e",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0b45e2fe-88f8-42b8-8219-53fc5ed02c88"
}
}
}, {
"id" : "0c607c30-56a3-4311-9967-6fada532cb8b",
"hostId" : "45eb7e4a-8f1b-45be-b412-07cf5ce9a44a",
"ownerIdentityId" : "5a42472d-72b3-4d84-898b-401e23c50dc4",
"createdBy" : "5a42472d-72b3-4d84-898b-401e23c50dc4",
"createdAt" : "2023-12-04T07:55:44.132537Z",
"updatedAt" : "2023-12-04T07:55:44.132537Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1120",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1119",
"productVersion" : "7.3.36",
"networkId" : "ea74c3e3-cd05-438f-9846-4ca666987574",
"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/45eb7e4a-8f1b-45be-b412-07cf5ce9a44a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ea74c3e3-cd05-438f-9846-4ca666987574",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0c607c30-56a3-4311-9967-6fada532cb8b"
}
}
}, {
"id" : "0ccdd8f2-0ea2-4a5f-810c-76c364b4abf7",
"hostId" : "f420aa27-a1c8-486c-96bf-0df38e3b0cdd",
"ownerIdentityId" : "c72937eb-0a0b-49e9-9572-4581d576db7a",
"createdBy" : "c72937eb-0a0b-49e9-9572-4581d576db7a",
"createdAt" : "2023-12-04T07:55:37.303467Z",
"updatedAt" : "2023-12-04T07:55:37.303467Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-808",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-807",
"productVersion" : "7.3.36",
"networkId" : "5a4a0a0f-7643-4e75-86e1-61dc67f3eff1",
"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/f420aa27-a1c8-486c-96bf-0df38e3b0cdd"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5a4a0a0f-7643-4e75-86e1-61dc67f3eff1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0ccdd8f2-0ea2-4a5f-810c-76c364b4abf7"
}
}
}, {
"id" : "0ef24c3e-635e-4621-aded-a25bcf28e30a",
"hostId" : "9b063781-8e4a-49ad-863e-bccf7f3185c4",
"ownerIdentityId" : "f2afe3cd-726e-4f94-a05a-31223d48cfb5",
"createdBy" : "f2afe3cd-726e-4f94-a05a-31223d48cfb5",
"createdAt" : "2023-12-04T07:55:45.146526Z",
"updatedAt" : "2023-12-04T07:55:45.146526Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1177",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1176",
"productVersion" : "7.3.36",
"networkId" : "4f576380-1079-400a-9a7e-cf0d47a77581",
"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/9b063781-8e4a-49ad-863e-bccf7f3185c4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4f576380-1079-400a-9a7e-cf0d47a77581",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0ef24c3e-635e-4621-aded-a25bcf28e30a"
}
}
}, {
"id" : "0f81eb36-2fea-441b-809a-27edb7a6f194",
"hostId" : "f6267763-7561-42f8-8b2f-ca205a5f27e2",
"ownerIdentityId" : "ca686643-cea8-4c62-be56-fedc6b6afdc5",
"createdBy" : "ca686643-cea8-4c62-be56-fedc6b6afdc5",
"createdAt" : "2023-12-04T07:55:45.150057Z",
"updatedAt" : "2023-12-04T07:55:45.150057Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1183",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1182",
"productVersion" : "7.3.36",
"networkId" : "4f576380-1079-400a-9a7e-cf0d47a77581",
"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/f6267763-7561-42f8-8b2f-ca205a5f27e2"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4f576380-1079-400a-9a7e-cf0d47a77581",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0f81eb36-2fea-441b-809a-27edb7a6f194"
}
}
}, {
"id" : "0ffd64b6-3985-456e-83e6-3849db13f0ce",
"hostId" : "11a3dd5f-7b28-4073-8e2f-d89251c73122",
"ownerIdentityId" : "b392f813-c54c-402c-b6d7-e2ff39729d0e",
"createdBy" : "b392f813-c54c-402c-b6d7-e2ff39729d0e",
"createdAt" : "2023-12-04T07:55:39.114939Z",
"updatedAt" : "2023-12-04T07:55:39.114939Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-913",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-912",
"productVersion" : "7.3.36",
"networkId" : "87b45de9-328a-4e0c-871c-4bfc0be63220",
"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/11a3dd5f-7b28-4073-8e2f-d89251c73122"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/87b45de9-328a-4e0c-871c-4bfc0be63220",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0ffd64b6-3985-456e-83e6-3849db13f0ce"
}
}
}, {
"id" : "164e27b8-0a1d-40ed-9e92-f49344f32c20",
"hostId" : "014738c1-2f76-4a3a-9653-bd1cc7d4cde9",
"ownerIdentityId" : "3aa433db-503c-4eab-8dcc-656d68359d31",
"createdBy" : "3aa433db-503c-4eab-8dcc-656d68359d31",
"createdAt" : "2023-12-04T07:55:38.261311Z",
"updatedAt" : "2023-12-04T07:55:38.261311Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-856",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-855",
"productVersion" : "7.3.36",
"networkId" : "ec166a5f-4872-4fa0-9a49-02736868fff1",
"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/014738c1-2f76-4a3a-9653-bd1cc7d4cde9"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec166a5f-4872-4fa0-9a49-02736868fff1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/164e27b8-0a1d-40ed-9e92-f49344f32c20"
}
}
}, {
"id" : "16d71bb1-5531-4615-b517-09df68d42aaa",
"hostId" : "1857008e-804d-4add-a92d-e0aca82dc807",
"ownerIdentityId" : "624e15fe-6b1b-4a4f-a490-d9f9157b93d6",
"createdBy" : "624e15fe-6b1b-4a4f-a490-d9f9157b93d6",
"createdAt" : "2023-12-04T07:55:50.029671Z",
"updatedAt" : "2023-12-04T07:55:50.029671Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1361",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1360",
"productVersion" : "7.3.36",
"networkId" : "1a4eb51b-f254-4467-afb7-a7a96f060b3b",
"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/1857008e-804d-4add-a92d-e0aca82dc807"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1a4eb51b-f254-4467-afb7-a7a96f060b3b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/16d71bb1-5531-4615-b517-09df68d42aaa"
}
}
}, {
"id" : "186a4d7d-df60-44e6-9b58-e279f92ece50",
"hostId" : "6eb157e0-61c9-4320-8953-7c149f57dacf",
"ownerIdentityId" : "b94881d9-8b5e-425f-96d6-7faa8789d88a",
"createdBy" : "b94881d9-8b5e-425f-96d6-7faa8789d88a",
"createdAt" : "2023-12-04T07:55:38.263525Z",
"updatedAt" : "2023-12-04T07:55:38.263525Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-859",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-858",
"productVersion" : "7.3.36",
"networkId" : "ec166a5f-4872-4fa0-9a49-02736868fff1",
"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/6eb157e0-61c9-4320-8953-7c149f57dacf"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec166a5f-4872-4fa0-9a49-02736868fff1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/186a4d7d-df60-44e6-9b58-e279f92ece50"
}
}
}, {
"id" : "1e2482c2-2222-4285-b8c4-de1f8da78b21",
"hostId" : "3a4cd61a-ff9c-407a-84a5-3a34c11fb705",
"ownerIdentityId" : "f6070ce7-3dbf-4671-93a9-a07c29ac0e26",
"createdBy" : "f6070ce7-3dbf-4671-93a9-a07c29ac0e26",
"createdAt" : "2023-12-04T07:55:50.009686Z",
"updatedAt" : "2023-12-04T07:55:50.190926Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1355",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1354",
"productVersion" : "7.3.36",
"networkId" : "1a4eb51b-f254-4467-afb7-a7a96f060b3b",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "SUSPENDED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3a4cd61a-ff9c-407a-84a5-3a34c11fb705"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1a4eb51b-f254-4467-afb7-a7a96f060b3b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1e2482c2-2222-4285-b8c4-de1f8da78b21"
}
}
}, {
"id" : "1eb8d7af-7254-4b02-8a12-8291aed65df5",
"hostId" : "3e5798ac-8f5b-4f28-87db-480c60e78634",
"ownerIdentityId" : "8df23c02-2335-4d38-8ba5-d1840fc7623f",
"createdBy" : "8df23c02-2335-4d38-8ba5-d1840fc7623f",
"createdAt" : "2023-12-04T07:55:51.345697Z",
"updatedAt" : "2023-12-04T07:55:51.345697Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1397",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1396",
"productVersion" : "7.3.36",
"networkId" : "c348bf68-47f6-415a-8adc-f6b99103d8d4",
"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/3e5798ac-8f5b-4f28-87db-480c60e78634"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c348bf68-47f6-415a-8adc-f6b99103d8d4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1eb8d7af-7254-4b02-8a12-8291aed65df5"
}
}
}, {
"id" : "1ff39fee-77cb-4561-84e5-93411bc65dfd",
"hostId" : "7983db19-9d8b-4e42-ad07-ed7a38493490",
"ownerIdentityId" : "51426700-39c0-4954-984e-7b08d37fa9bc",
"createdBy" : "51426700-39c0-4954-984e-7b08d37fa9bc",
"createdAt" : "2023-12-04T07:55:42.543240Z",
"updatedAt" : "2023-12-04T07:55:42.543240Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1048",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1047",
"productVersion" : "7.3.36",
"networkId" : "bebe3790-0cf1-4916-9949-78402c0d7452",
"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/7983db19-9d8b-4e42-ad07-ed7a38493490"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bebe3790-0cf1-4916-9949-78402c0d7452",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1ff39fee-77cb-4561-84e5-93411bc65dfd"
}
}
}, {
"id" : "24219c8a-ffde-4973-99e1-7191612975e7",
"hostId" : "013735dd-c0cd-4498-80b7-2e0cd613f126",
"ownerIdentityId" : "6cf5762f-a922-40fe-b8ba-9afa75ff120a",
"createdBy" : "6cf5762f-a922-40fe-b8ba-9afa75ff120a",
"createdAt" : "2023-12-04T07:55:40.753448Z",
"updatedAt" : "2023-12-04T07:55:40.753448Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-961",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-960",
"productVersion" : "7.3.36",
"networkId" : "ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"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/013735dd-c0cd-4498-80b7-2e0cd613f126"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/24219c8a-ffde-4973-99e1-7191612975e7"
}
}
}, {
"id" : "24a6ccc6-8c97-481e-89a6-282ca3a48e86",
"hostId" : "da252811-a9af-4913-a45d-3c19e3161e61",
"ownerIdentityId" : "88b8e38c-5cc6-4a39-9d96-3b95d9012a2d",
"createdBy" : "88b8e38c-5cc6-4a39-9d96-3b95d9012a2d",
"createdAt" : "2023-12-04T07:55:38.944385Z",
"updatedAt" : "2023-12-04T07:55:38.944385Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-895",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-894",
"productVersion" : "7.3.36",
"networkId" : "90924e69-2d96-4e45-8642-63c21dd0ddba",
"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/da252811-a9af-4913-a45d-3c19e3161e61"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/90924e69-2d96-4e45-8642-63c21dd0ddba",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/24a6ccc6-8c97-481e-89a6-282ca3a48e86"
}
}
}, {
"id" : "267410df-d444-4ef9-9ae0-ea55d2139882",
"hostId" : "66104893-fdeb-4e92-b3c7-dad412161fc4",
"ownerIdentityId" : "574d5d39-d0da-455d-9645-49598cec0dfd",
"createdBy" : "574d5d39-d0da-455d-9645-49598cec0dfd",
"createdAt" : "2023-12-04T07:55:41.988577Z",
"updatedAt" : "2023-12-04T07:55:41.988577Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1012",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1011",
"productVersion" : "7.3.36",
"networkId" : "3eaeaf0e-8bec-4f00-a26d-17ac86d33735",
"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/66104893-fdeb-4e92-b3c7-dad412161fc4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3eaeaf0e-8bec-4f00-a26d-17ac86d33735",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/267410df-d444-4ef9-9ae0-ea55d2139882"
}
}
}, {
"id" : "273859c7-7ca7-49b5-a7e9-faa01c2550ca",
"hostId" : "8d7d77b2-1443-4f98-9e8d-8c0485d62ef4",
"ownerIdentityId" : "f708c340-7beb-44a9-8a67-51de1ec0d0e2",
"createdBy" : "f708c340-7beb-44a9-8a67-51de1ec0d0e2",
"createdAt" : "2023-12-04T07:55:38.265463Z",
"updatedAt" : "2023-12-04T07:55:38.265463Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-862",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-861",
"productVersion" : "7.3.36",
"networkId" : "ec166a5f-4872-4fa0-9a49-02736868fff1",
"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/8d7d77b2-1443-4f98-9e8d-8c0485d62ef4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec166a5f-4872-4fa0-9a49-02736868fff1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/273859c7-7ca7-49b5-a7e9-faa01c2550ca"
}
}
}, {
"id" : "2772a9ce-7a3c-4955-a5f4-c2e0660c9fa8",
"hostId" : "2b82c1bb-3b44-4afb-ae85-3ca97bc3f25d",
"ownerIdentityId" : "6ed89e89-51c3-42cb-8706-abf7a3ba18e2",
"createdBy" : "6ed89e89-51c3-42cb-8706-abf7a3ba18e2",
"createdAt" : "2023-12-04T07:55:50.022561Z",
"updatedAt" : "2023-12-04T07:55:50.022561Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1358",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1357",
"productVersion" : "7.3.36",
"networkId" : "1a4eb51b-f254-4467-afb7-a7a96f060b3b",
"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/2b82c1bb-3b44-4afb-ae85-3ca97bc3f25d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1a4eb51b-f254-4467-afb7-a7a96f060b3b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2772a9ce-7a3c-4955-a5f4-c2e0660c9fa8"
}
}
}, {
"id" : "29056ba0-5cd3-4e44-8923-f24ea2a35213",
"hostId" : "7a898e77-6619-49de-bc2b-4d8048d6b287",
"ownerIdentityId" : "0feafe2e-3f94-46e3-83e9-d8af6c9e4a80",
"createdBy" : "0feafe2e-3f94-46e3-83e9-d8af6c9e4a80",
"createdAt" : "2023-12-04T07:55:37.325050Z",
"updatedAt" : "2023-12-04T07:55:37.325050Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-811",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-810",
"productVersion" : "7.3.36",
"networkId" : "5a4a0a0f-7643-4e75-86e1-61dc67f3eff1",
"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/7a898e77-6619-49de-bc2b-4d8048d6b287"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5a4a0a0f-7643-4e75-86e1-61dc67f3eff1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/29056ba0-5cd3-4e44-8923-f24ea2a35213"
}
}
}, {
"id" : "2a8f395d-eea3-49fa-9e71-4ed65883042e",
"hostId" : "1f26194d-5369-4da8-8243-434d3ce7a2e4",
"ownerIdentityId" : "864ab312-8abc-4c3f-acbe-8b360f9e02e5",
"createdBy" : "864ab312-8abc-4c3f-acbe-8b360f9e02e5",
"createdAt" : "2023-12-04T07:55:43.793432Z",
"updatedAt" : "2023-12-04T07:55:43.793432Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1093",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1092",
"productVersion" : "7.3.36",
"networkId" : "8f475bef-82bf-408a-b5da-7ba28841e8ab",
"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/1f26194d-5369-4da8-8243-434d3ce7a2e4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8f475bef-82bf-408a-b5da-7ba28841e8ab",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2a8f395d-eea3-49fa-9e71-4ed65883042e"
}
}
}, {
"id" : "2e688982-411a-4d7e-9a07-5427d8e4f61d",
"hostId" : "6d558192-472f-41f1-ad91-53624e979a51",
"ownerIdentityId" : "0ebcb1e1-125e-4ce1-997c-a2ebc46fda5f",
"createdBy" : "0ebcb1e1-125e-4ce1-997c-a2ebc46fda5f",
"createdAt" : "2023-12-04T07:55:50.586238Z",
"updatedAt" : "2023-12-04T07:55:50.982686Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1373",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Updated name",
"productVersion" : "7.3.36",
"networkId" : "41eb3944-79fe-4d3b-9118-03b005003375",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : true,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "63a8bffc-2ff9-4bde-98a4-4702c811a4e9",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6d558192-472f-41f1-ad91-53624e979a51"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/41eb3944-79fe-4d3b-9118-03b005003375",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2e688982-411a-4d7e-9a07-5427d8e4f61d"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/63a8bffc-2ff9-4bde-98a4-4702c811a4e9",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/63a8bffc-2ff9-4bde-98a4-4702c811a4e9"
}
}
}, {
"id" : "2e8afa4e-2207-42ec-8778-3d36e54b5e60",
"hostId" : "9e58f11e-4c34-4344-89fb-b7e13f603769",
"ownerIdentityId" : "ebe6e99a-2cb5-455e-9aaf-8031b16002cf",
"createdBy" : "ebe6e99a-2cb5-455e-9aaf-8031b16002cf",
"createdAt" : "2023-12-04T07:55:40.748100Z",
"updatedAt" : "2023-12-04T07:55:40.748100Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-955",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-954",
"productVersion" : "7.3.36",
"networkId" : "ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"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/9e58f11e-4c34-4344-89fb-b7e13f603769"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2e8afa4e-2207-42ec-8778-3d36e54b5e60"
}
}
}, {
"id" : "2eadab8f-c0bb-4618-9911-32319e937c2f",
"hostId" : "a58c83e9-6b69-41ae-beea-586cc24e2611",
"ownerIdentityId" : "5687bcb3-270f-4e5a-94a3-f7725d0038b1",
"createdBy" : "5687bcb3-270f-4e5a-94a3-f7725d0038b1",
"createdAt" : "2023-12-04T07:55:49.318618Z",
"updatedAt" : "2023-12-04T07:55:49.374914Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "rlNNie8i3s43ZYKs4Zkiv",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Test edge router 1701676549",
"productVersion" : "7.3.36",
"networkId" : "284ed1ad-6c90-4151-8327-d79adfcd58f4",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONING",
"softwareDeploymentStateId" : "637fb633-80bc-4218-a6ce-858b9b64334e",
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a58c83e9-6b69-41ae-beea-586cc24e2611"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/284ed1ad-6c90-4151-8327-d79adfcd58f4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2eadab8f-c0bb-4618-9911-32319e937c2f"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/637fb633-80bc-4218-a6ce-858b9b64334e",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/637fb633-80bc-4218-a6ce-858b9b64334e"
}
}
}, {
"id" : "310313fd-2a52-4020-8d5e-92f7ba4ef44d",
"hostId" : "cad41151-8ccf-46e8-9e85-4791d66b375e",
"ownerIdentityId" : "601b329a-8e59-4c26-b2e4-ec56a2b812e6",
"createdBy" : "601b329a-8e59-4c26-b2e4-ec56a2b812e6",
"createdAt" : "2023-12-04T07:55:44.377609Z",
"updatedAt" : "2023-12-04T07:55:44.377609Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1138",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1137",
"productVersion" : "7.3.36",
"networkId" : "adfeee33-4e31-4cb5-985f-349037974476",
"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/cad41151-8ccf-46e8-9e85-4791d66b375e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/adfeee33-4e31-4cb5-985f-349037974476",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/310313fd-2a52-4020-8d5e-92f7ba4ef44d"
}
}
}, {
"id" : "318e82e3-1d8b-4c77-97c4-e7d07bb4b813",
"hostId" : "aef42c58-1914-4c63-ae3f-0a2b06914295",
"ownerIdentityId" : "83f48f82-e034-443b-ab56-2dcc1c6dbe25",
"createdBy" : "83f48f82-e034-443b-ab56-2dcc1c6dbe25",
"createdAt" : "2023-12-04T07:55:44.710589Z",
"updatedAt" : "2023-12-04T07:55:44.710589Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1165",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1164",
"productVersion" : "7.3.36",
"networkId" : "bb492bce-3422-4d1e-a247-b4e82517eb9f",
"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/aef42c58-1914-4c63-ae3f-0a2b06914295"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bb492bce-3422-4d1e-a247-b4e82517eb9f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/318e82e3-1d8b-4c77-97c4-e7d07bb4b813"
}
}
}, {
"id" : "32bc77e5-4b3c-4b22-a0ea-7ee59f61a13d",
"hostId" : "fa5e47ab-3dbe-48f9-bd31-440e3647f887",
"ownerIdentityId" : "24705fde-bca6-4070-af05-8b28aadf8bdd",
"createdBy" : "24705fde-bca6-4070-af05-8b28aadf8bdd",
"createdAt" : "2023-12-04T07:55:48.256382Z",
"updatedAt" : "2023-12-04T07:55:48.256382Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1282",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1281",
"productVersion" : "7.3.36",
"networkId" : "dfe2a94b-ceee-4e73-a8e8-34c7bc08e405",
"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/fa5e47ab-3dbe-48f9-bd31-440e3647f887"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dfe2a94b-ceee-4e73-a8e8-34c7bc08e405",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/32bc77e5-4b3c-4b22-a0ea-7ee59f61a13d"
}
}
}, {
"id" : "3374010c-a5a3-4caf-8ece-ed8bdd8f764d",
"hostId" : "5615af45-21d7-4aee-abec-e13e61fb3876",
"ownerIdentityId" : "11461008-888b-49c2-8c0c-18d3da1bbbe0",
"createdBy" : "11461008-888b-49c2-8c0c-18d3da1bbbe0",
"createdAt" : "2023-12-04T07:55:38.957068Z",
"updatedAt" : "2023-12-04T07:55:38.957068Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-901",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-900",
"productVersion" : "7.3.36",
"networkId" : "90924e69-2d96-4e45-8642-63c21dd0ddba",
"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/5615af45-21d7-4aee-abec-e13e61fb3876"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/90924e69-2d96-4e45-8642-63c21dd0ddba",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3374010c-a5a3-4caf-8ece-ed8bdd8f764d"
}
}
}, {
"id" : "3485eb9d-c8bd-48b7-ac7d-b456680fc214",
"hostId" : "1124d9f1-aa78-41d6-a8ed-42b4a68e0bd8",
"ownerIdentityId" : "c3b803c9-526f-4878-afd2-d342385d15d8",
"createdBy" : "c3b803c9-526f-4878-afd2-d342385d15d8",
"createdAt" : "2023-12-04T07:55:41.990313Z",
"updatedAt" : "2023-12-04T07:55:41.990313Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1015",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1014",
"productVersion" : "7.3.36",
"networkId" : "3eaeaf0e-8bec-4f00-a26d-17ac86d33735",
"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/1124d9f1-aa78-41d6-a8ed-42b4a68e0bd8"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3eaeaf0e-8bec-4f00-a26d-17ac86d33735",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3485eb9d-c8bd-48b7-ac7d-b456680fc214"
}
}
}, {
"id" : "36b8a8e8-02de-4d89-86f8-5ccf56fed4bd",
"hostId" : "6188887d-c8a7-4677-b43a-833905b31efd",
"ownerIdentityId" : "4862e772-42b4-45d2-9ab6-2c574abe752d",
"createdBy" : "4862e772-42b4-45d2-9ab6-2c574abe752d",
"createdAt" : "2023-12-04T07:55:38.942389Z",
"updatedAt" : "2023-12-04T07:55:38.942389Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-892",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-891",
"productVersion" : "7.3.36",
"networkId" : "90924e69-2d96-4e45-8642-63c21dd0ddba",
"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/6188887d-c8a7-4677-b43a-833905b31efd"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/90924e69-2d96-4e45-8642-63c21dd0ddba",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/36b8a8e8-02de-4d89-86f8-5ccf56fed4bd"
}
}
}, {
"id" : "37a9b4c4-562d-4095-8945-253020e893a0",
"hostId" : "5fa4c21b-a0bc-4aeb-890c-2e5c11ebec45",
"ownerIdentityId" : "8ec44090-d43d-4e95-9324-b77f8ab29078",
"createdBy" : "8ec44090-d43d-4e95-9324-b77f8ab29078",
"createdAt" : "2023-12-04T07:55:47.094082Z",
"updatedAt" : "2023-12-04T07:55:47.094082Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1192",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1191",
"productVersion" : "7.3.36",
"networkId" : "83a7b480-8e2a-4aea-b190-5117b90566c1",
"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/5fa4c21b-a0bc-4aeb-890c-2e5c11ebec45"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/83a7b480-8e2a-4aea-b190-5117b90566c1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/37a9b4c4-562d-4095-8945-253020e893a0"
}
}
}, {
"id" : "38db8421-4284-48fb-b05e-1708bc665bfd",
"hostId" : "3cc321e2-e535-43be-8f1f-49c37d9fa76a",
"ownerIdentityId" : "849f87bd-f5c1-446a-8d5a-96235f73d071",
"createdBy" : "849f87bd-f5c1-446a-8d5a-96235f73d071",
"createdAt" : "2023-12-04T07:55:49.691532Z",
"updatedAt" : "2023-12-04T07:55:49.691532Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1345",
"domainName" : null,
"alternateDomainName" : null,
"name" : "edgerouter-1346",
"productVersion" : "7.3.69",
"networkId" : "910ae4d3-bfe5-4d86-81aa-95d7c8333dd3",
"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/3cc321e2-e535-43be-8f1f-49c37d9fa76a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/910ae4d3-bfe5-4d86-81aa-95d7c8333dd3",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/38db8421-4284-48fb-b05e-1708bc665bfd"
}
}
}, {
"id" : "38ef9ed8-7b4b-4616-a944-98206fd26fa9",
"hostId" : "b5dacbe0-e71d-4a18-9809-8cab97d1b36d",
"ownerIdentityId" : "9ed6b415-bbf3-45c1-9659-357ad7e80a0e",
"createdBy" : "9ed6b415-bbf3-45c1-9659-357ad7e80a0e",
"createdAt" : "2023-12-04T07:55:37.299278Z",
"updatedAt" : "2023-12-04T07:55:37.509653Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-802",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-801",
"productVersion" : "7.3.36",
"networkId" : "5a4a0a0f-7643-4e75-86e1-61dc67f3eff1",
"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/b5dacbe0-e71d-4a18-9809-8cab97d1b36d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5a4a0a0f-7643-4e75-86e1-61dc67f3eff1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/38ef9ed8-7b4b-4616-a944-98206fd26fa9"
}
}
}, {
"id" : "3b081ae7-0d3d-473b-ad63-212eb45e1fd2",
"hostId" : "047cd40d-0a3b-48b2-b387-813be661c9a7",
"ownerIdentityId" : "38cb84eb-5f3e-4a81-9e61-b5c6c491103c",
"createdBy" : "38cb84eb-5f3e-4a81-9e61-b5c6c491103c",
"createdAt" : "2023-12-04T07:55:47.924358Z",
"updatedAt" : "2023-12-04T07:55:47.924358Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1264",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1263",
"productVersion" : "7.3.36",
"networkId" : "a801c478-59fb-4aed-9038-d946750b92b7",
"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/047cd40d-0a3b-48b2-b387-813be661c9a7"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a801c478-59fb-4aed-9038-d946750b92b7",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3b081ae7-0d3d-473b-ad63-212eb45e1fd2"
}
}
}, {
"id" : "3b119169-14c7-4757-8207-ba3d9610af1c",
"hostId" : "0e229aa7-0ffd-461f-adf7-9eaca8230f9d",
"ownerIdentityId" : "988f04f5-bbd2-48c2-afa9-973c7dc8bcac",
"createdBy" : "988f04f5-bbd2-48c2-afa9-973c7dc8bcac",
"createdAt" : "2023-12-04T07:55:48.853780Z",
"updatedAt" : "2023-12-04T07:55:48.853780Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1300",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1299",
"productVersion" : "7.3.36",
"networkId" : "0935d5d1-ba2d-490d-b9f6-6f6a7afe7d9d",
"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/0e229aa7-0ffd-461f-adf7-9eaca8230f9d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0935d5d1-ba2d-490d-b9f6-6f6a7afe7d9d",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3b119169-14c7-4757-8207-ba3d9610af1c"
}
}
}, {
"id" : "3c8e036a-8a5e-4ea5-aeaa-614b9c6e0e24",
"hostId" : "ee515b95-648a-4b7a-af7e-512aaf6dd3ad",
"ownerIdentityId" : "91361ed9-1764-4695-8c96-2ae7a06f913c",
"createdBy" : "91361ed9-1764-4695-8c96-2ae7a06f913c",
"createdAt" : "2023-12-04T07:55:38.036120Z",
"updatedAt" : "2023-12-04T07:55:38.148180Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-838",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-837",
"productVersion" : "7.3.36",
"networkId" : "aee4186a-9ab2-4703-9333-a7dcc4be0e11",
"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/ee515b95-648a-4b7a-af7e-512aaf6dd3ad"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/aee4186a-9ab2-4703-9333-a7dcc4be0e11",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3c8e036a-8a5e-4ea5-aeaa-614b9c6e0e24"
}
}
}, {
"id" : "3d3e66dc-5357-4041-9cf9-64d50b876d08",
"hostId" : "0296f9fd-8e15-42e6-8a4f-a6db76f3028f",
"ownerIdentityId" : "c5dedef9-b492-4539-87da-9819bfdf3685",
"createdBy" : "c5dedef9-b492-4539-87da-9819bfdf3685",
"createdAt" : "2023-12-04T07:55:38.438198Z",
"updatedAt" : "2023-12-04T07:55:38.438198Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-880",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-879",
"productVersion" : "7.3.36",
"networkId" : "adfcd6e0-fec7-4eff-9197-78bfd4c2d37e",
"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/0296f9fd-8e15-42e6-8a4f-a6db76f3028f"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/adfcd6e0-fec7-4eff-9197-78bfd4c2d37e",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3d3e66dc-5357-4041-9cf9-64d50b876d08"
}
}
}, {
"id" : "459d7397-9cd7-4618-90e4-2d4762b6dc4d",
"hostId" : "f9f43b43-1271-45de-992f-0ffed55395e5",
"ownerIdentityId" : "29dc152d-f232-4142-9c81-de167822dd61",
"createdBy" : "29dc152d-f232-4142-9c81-de167822dd61",
"createdAt" : "2023-12-04T07:55:45.148305Z",
"updatedAt" : "2023-12-04T07:55:45.148305Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1180",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1179",
"productVersion" : "7.3.36",
"networkId" : "4f576380-1079-400a-9a7e-cf0d47a77581",
"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/f9f43b43-1271-45de-992f-0ffed55395e5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4f576380-1079-400a-9a7e-cf0d47a77581",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/459d7397-9cd7-4618-90e4-2d4762b6dc4d"
}
}
}, {
"id" : "46c0f726-5feb-4eeb-95c3-4a7cfd85e3e7",
"hostId" : "3a028be9-7e54-4a9b-8cda-cc114d85322b",
"ownerIdentityId" : "467f8114-8ded-4438-9637-7aa07c20c4b4",
"createdBy" : "467f8114-8ded-4438-9637-7aa07c20c4b4",
"createdAt" : "2023-12-04T07:55:44.367449Z",
"updatedAt" : "2023-12-04T07:55:44.367449Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1129",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1128",
"productVersion" : "7.3.36",
"networkId" : "adfeee33-4e31-4cb5-985f-349037974476",
"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/3a028be9-7e54-4a9b-8cda-cc114d85322b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/adfeee33-4e31-4cb5-985f-349037974476",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/46c0f726-5feb-4eeb-95c3-4a7cfd85e3e7"
}
}
}, {
"id" : "48961e0b-f486-495b-9977-1be42ea9371b",
"hostId" : "62ae53b3-628d-414d-a94f-c168b0cbd681",
"ownerIdentityId" : "acc93c57-4b76-46a6-9e7e-d912556ff619",
"createdBy" : "acc93c57-4b76-46a6-9e7e-d912556ff619",
"createdAt" : "2023-12-04T07:55:40.750985Z",
"updatedAt" : "2023-12-04T07:55:40.750985Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-958",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-957",
"productVersion" : "7.3.36",
"networkId" : "ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"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/62ae53b3-628d-414d-a94f-c168b0cbd681"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/48961e0b-f486-495b-9977-1be42ea9371b"
}
}
}, {
"id" : "4aaf728f-c545-40f0-a931-bb3df5e6828d",
"hostId" : "c25dd0f0-886a-42ff-88bc-812c1108568b",
"ownerIdentityId" : "4e04d040-8afb-4391-8464-2617bd3c393b",
"createdBy" : "4e04d040-8afb-4391-8464-2617bd3c393b",
"createdAt" : "2023-12-04T07:55:40.970917Z",
"updatedAt" : "2023-12-04T07:55:41.012217Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "16809cf0-b0da-48c5-a8a8-69d362f8438a",
"domainName" : null,
"alternateDomainName" : null,
"name" : "edgerouter-968",
"productVersion" : "7.3.36",
"networkId" : "ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c25dd0f0-886a-42ff-88bc-812c1108568b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4aaf728f-c545-40f0-a931-bb3df5e6828d"
}
}
}, {
"id" : "4ce29715-27e3-4ba0-a5eb-4e6b75cdcfcf",
"hostId" : "082ad688-c0a6-433c-ab0a-eb767a40a272",
"ownerIdentityId" : "324cc0de-fc1a-4ad1-aa35-eee5581ebde6",
"createdBy" : "324cc0de-fc1a-4ad1-aa35-eee5581ebde6",
"createdAt" : "2023-12-04T07:55:51.811446Z",
"updatedAt" : "2023-12-04T07:55:51.811446Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1415",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1414",
"productVersion" : "7.3.36",
"networkId" : "cd9be487-f518-46e8-9db9-d3563fcd4c18",
"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/082ad688-c0a6-433c-ab0a-eb767a40a272"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/cd9be487-f518-46e8-9db9-d3563fcd4c18",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4ce29715-27e3-4ba0-a5eb-4e6b75cdcfcf"
}
}
}, {
"id" : "4cf0ea90-cff1-4acf-b7de-e8f5267c63c0",
"hostId" : "1eaa58ea-26f5-4d61-b987-c8a5ab1a1119",
"ownerIdentityId" : "2be6a9b1-d91f-438a-bf00-7e8a0e94fd8a",
"createdBy" : "2be6a9b1-d91f-438a-bf00-7e8a0e94fd8a",
"createdAt" : "2023-12-04T07:55:48.851949Z",
"updatedAt" : "2023-12-04T07:55:48.851949Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1297",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1296",
"productVersion" : "7.3.36",
"networkId" : "0935d5d1-ba2d-490d-b9f6-6f6a7afe7d9d",
"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/1eaa58ea-26f5-4d61-b987-c8a5ab1a1119"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0935d5d1-ba2d-490d-b9f6-6f6a7afe7d9d",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4cf0ea90-cff1-4acf-b7de-e8f5267c63c0"
}
}
}, {
"id" : "4d64c64f-855b-4bf8-9cb2-8c5ea0b81015",
"hostId" : "4648b370-6216-4235-adcc-8ce75318912b",
"ownerIdentityId" : "6b631c04-9189-49c7-84b8-1a0d010ab89b",
"createdBy" : "6b631c04-9189-49c7-84b8-1a0d010ab89b",
"createdAt" : "2023-12-04T07:55:41.285211Z",
"updatedAt" : "2023-12-04T07:55:41.285211Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-985",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-984",
"productVersion" : "7.3.36",
"networkId" : "4d9f13ac-58b0-4edb-9b99-b4ef1799130b",
"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/4648b370-6216-4235-adcc-8ce75318912b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4d9f13ac-58b0-4edb-9b99-b4ef1799130b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4d64c64f-855b-4bf8-9cb2-8c5ea0b81015"
}
}
}, {
"id" : "4e9dd23d-1c41-459b-80eb-d6752458e54b",
"hostId" : "f4ff8e12-589e-4037-bb17-bd37509ede09",
"ownerIdentityId" : "cc42ff5b-568c-418e-848e-185a23081c31",
"createdBy" : "cc42ff5b-568c-418e-848e-185a23081c31",
"createdAt" : "2023-12-04T07:55:43.362740Z",
"updatedAt" : "2023-12-04T07:55:43.468954Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "EXrFHox8tp6Kxm0a6Kva9",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Test edge router 1701676543",
"productVersion" : "7.3.36",
"networkId" : "850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : true,
"online" : false,
"verified" : false,
"status" : "PROVISIONING",
"softwareDeploymentStateId" : "b5de5d2e-a6a0-4807-ae9f-75c86495592e",
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f4ff8e12-589e-4037-bb17-bd37509ede09"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4e9dd23d-1c41-459b-80eb-d6752458e54b"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b5de5d2e-a6a0-4807-ae9f-75c86495592e",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/b5de5d2e-a6a0-4807-ae9f-75c86495592e"
}
}
}, {
"id" : "5196caf2-f64e-4887-99dd-bedcfb6456ac",
"hostId" : "ed9f89cd-ad89-402f-a562-2194909bfa9f",
"ownerIdentityId" : "ca81a129-02d5-4b7d-8ecb-fbdcf8fbc74a",
"createdBy" : "ca81a129-02d5-4b7d-8ecb-fbdcf8fbc74a",
"createdAt" : "2023-12-04T07:55:50.613707Z",
"updatedAt" : "2023-12-04T07:55:50.613707Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1379",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1378",
"productVersion" : "7.3.36",
"networkId" : "41eb3944-79fe-4d3b-9118-03b005003375",
"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/ed9f89cd-ad89-402f-a562-2194909bfa9f"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/41eb3944-79fe-4d3b-9118-03b005003375",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5196caf2-f64e-4887-99dd-bedcfb6456ac"
}
}
}, {
"id" : "527ecab6-d720-431a-8eaa-5184023394b1",
"hostId" : "5826b88a-b437-4f51-a17e-eae21c6b2d4e",
"ownerIdentityId" : "402382c8-05ac-41bc-8cf7-4ef20908325b",
"createdBy" : "402382c8-05ac-41bc-8cf7-4ef20908325b",
"createdAt" : "2023-12-04T07:55:38.422598Z",
"updatedAt" : "2023-12-04T07:55:38.422598Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-874",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-873",
"productVersion" : "7.3.36",
"networkId" : "adfcd6e0-fec7-4eff-9197-78bfd4c2d37e",
"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/5826b88a-b437-4f51-a17e-eae21c6b2d4e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/adfcd6e0-fec7-4eff-9197-78bfd4c2d37e",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/527ecab6-d720-431a-8eaa-5184023394b1"
}
}
}, {
"id" : "56263263-4067-4042-a0a9-72ad7ce84a53",
"hostId" : "e4b1f607-6ccb-49d8-932b-b9cb06b84a5a",
"ownerIdentityId" : "3792b720-e3da-4dd8-8b5e-5f150830b34f",
"createdBy" : "3792b720-e3da-4dd8-8b5e-5f150830b34f",
"createdAt" : "2023-12-04T07:55:44.688183Z",
"updatedAt" : "2023-12-04T07:55:44.688183Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1159",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1158",
"productVersion" : "7.3.36",
"networkId" : "bb492bce-3422-4d1e-a247-b4e82517eb9f",
"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/e4b1f607-6ccb-49d8-932b-b9cb06b84a5a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bb492bce-3422-4d1e-a247-b4e82517eb9f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/56263263-4067-4042-a0a9-72ad7ce84a53"
}
}
}, {
"id" : "5670f442-1a42-4472-84af-9a6606e1b7ba",
"hostId" : "719312e4-6cbd-4044-9849-aaa63ca762b7",
"ownerIdentityId" : "ff09e08f-57ec-49c2-bb4a-f754856b7542",
"createdBy" : "ff09e08f-57ec-49c2-bb4a-f754856b7542",
"createdAt" : "2023-12-04T07:55:37.788413Z",
"updatedAt" : "2023-12-04T07:55:37.788413Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-829",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-828",
"productVersion" : "7.3.36",
"networkId" : "fad83308-7117-485f-ad4d-cc657ca2f238",
"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/719312e4-6cbd-4044-9849-aaa63ca762b7"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fad83308-7117-485f-ad4d-cc657ca2f238",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5670f442-1a42-4472-84af-9a6606e1b7ba"
}
}
}, {
"id" : "575dc970-03ae-4af4-bd83-3953d16a9e23",
"hostId" : "7bdaa56d-9491-468f-805a-c55ac5da93df",
"ownerIdentityId" : "2c4517a6-f8fa-4f39-b78a-9604a40b2d52",
"createdBy" : "2c4517a6-f8fa-4f39-b78a-9604a40b2d52",
"createdAt" : "2023-12-04T07:55:51.342290Z",
"updatedAt" : "2023-12-04T07:55:51.598546Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1391",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1390",
"productVersion" : "7.3.36",
"networkId" : "c348bf68-47f6-415a-8adc-f6b99103d8d4",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "ERROR",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7bdaa56d-9491-468f-805a-c55ac5da93df"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c348bf68-47f6-415a-8adc-f6b99103d8d4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/575dc970-03ae-4af4-bd83-3953d16a9e23"
}
}
}, {
"id" : "5b611192-6e92-4172-96e5-3a946cfa0b2a",
"hostId" : "5758c21d-c348-49eb-a0af-b0c6724cc2f4",
"ownerIdentityId" : "a6cdf858-9360-4192-9b04-27fcc82693ad",
"createdBy" : "a6cdf858-9360-4192-9b04-27fcc82693ad",
"createdAt" : "2023-12-04T07:55:38.064826Z",
"updatedAt" : "2023-12-04T07:55:38.064826Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-844",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-843",
"productVersion" : "7.3.36",
"networkId" : "aee4186a-9ab2-4703-9333-a7dcc4be0e11",
"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/5758c21d-c348-49eb-a0af-b0c6724cc2f4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/aee4186a-9ab2-4703-9333-a7dcc4be0e11",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5b611192-6e92-4172-96e5-3a946cfa0b2a"
}
}
}, {
"id" : "5b8353e9-6401-4da3-9fc7-4dbe78b7c03a",
"hostId" : "8bb2df40-916b-4b54-a897-1e4da19ddcb2",
"ownerIdentityId" : "7fc08ecc-e117-4c9b-9ad0-3055ed679825",
"createdBy" : "7fc08ecc-e117-4c9b-9ad0-3055ed679825",
"createdAt" : "2023-12-04T07:55:47.110723Z",
"updatedAt" : "2023-12-04T07:55:47.110723Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1198",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1197",
"productVersion" : "7.3.36",
"networkId" : "83a7b480-8e2a-4aea-b190-5117b90566c1",
"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/8bb2df40-916b-4b54-a897-1e4da19ddcb2"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/83a7b480-8e2a-4aea-b190-5117b90566c1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5b8353e9-6401-4da3-9fc7-4dbe78b7c03a"
}
}
}, {
"id" : "5ea72c6e-c375-4260-a51d-790053dd859b",
"hostId" : "ee1b60eb-348b-4ec8-a23a-b647ab568a99",
"ownerIdentityId" : "b36c4498-ce73-4ff6-b4b1-63d357c350f5",
"createdBy" : "b36c4498-ce73-4ff6-b4b1-63d357c350f5",
"createdAt" : "2023-12-04T07:55:47.660955Z",
"updatedAt" : "2023-12-04T07:55:47.660955Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1243",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1242",
"productVersion" : "7.3.36",
"networkId" : "9910e086-2fb8-4c24-8cd9-67b70f0f0b8b",
"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/ee1b60eb-348b-4ec8-a23a-b647ab568a99"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9910e086-2fb8-4c24-8cd9-67b70f0f0b8b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5ea72c6e-c375-4260-a51d-790053dd859b"
}
}
}, {
"id" : "5fa52e30-d05e-4288-96dd-b051b4620c87",
"hostId" : "215045a6-f6ff-4349-8b94-552ef99a43b9",
"ownerIdentityId" : "6c808677-acc7-44ad-bcb9-e958d68f5849",
"createdBy" : "6c808677-acc7-44ad-bcb9-e958d68f5849",
"createdAt" : "2023-12-04T07:55:41.557830Z",
"updatedAt" : "2023-12-04T07:55:41.557830Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-997",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-996",
"productVersion" : "7.3.36",
"networkId" : "5e78b7ab-e8e6-4ca6-a8bd-271c816c1d04",
"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/215045a6-f6ff-4349-8b94-552ef99a43b9"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5e78b7ab-e8e6-4ca6-a8bd-271c816c1d04",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5fa52e30-d05e-4288-96dd-b051b4620c87"
}
}
}, {
"id" : "603af979-9f1e-4103-848c-5d9b1db16489",
"hostId" : "6cfd5539-42ac-433d-bea4-543fed99e7e0",
"ownerIdentityId" : "67866b80-e6fd-49fd-afbb-50a85a5887fe",
"createdBy" : "67866b80-e6fd-49fd-afbb-50a85a5887fe",
"createdAt" : "2023-12-04T07:55:44.404048Z",
"updatedAt" : "2023-12-04T07:55:44.404048Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1148",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-ziti-features-1147",
"productVersion" : "7.3.4",
"networkId" : "872f7d70-e41e-46bd-b38c-5ab80181a91f",
"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/6cfd5539-42ac-433d-bea4-543fed99e7e0"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/872f7d70-e41e-46bd-b38c-5ab80181a91f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/603af979-9f1e-4103-848c-5d9b1db16489"
}
}
}, {
"id" : "6409d87c-1919-4c95-a285-f770b7e4a7de",
"hostId" : "beca4fcd-cc68-4b67-a26b-9ba2bbf02e43",
"ownerIdentityId" : "fe7d3262-8b29-48f1-a017-ddfc830be007",
"createdBy" : "fe7d3262-8b29-48f1-a017-ddfc830be007",
"createdAt" : "2023-12-04T07:55:49.600588Z",
"updatedAt" : "2023-12-04T07:55:49.600588Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1327",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1326",
"productVersion" : "7.3.36",
"networkId" : "d38a7770-ca00-409d-9c4b-898874c36e8e",
"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/beca4fcd-cc68-4b67-a26b-9ba2bbf02e43"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d38a7770-ca00-409d-9c4b-898874c36e8e",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6409d87c-1919-4c95-a285-f770b7e4a7de"
}
}
}, {
"id" : "65984880-687f-40d2-a8c2-76dad8727ddd",
"hostId" : "b143ab93-33b0-4001-867a-93b374aded99",
"ownerIdentityId" : "3673c5f7-e375-4c9b-bbf4-70404a38e960",
"createdBy" : "3673c5f7-e375-4c9b-bbf4-70404a38e960",
"createdAt" : "2023-12-04T07:55:48.840852Z",
"updatedAt" : "2023-12-04T07:55:49.021646Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1291",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1290",
"productVersion" : "7.3.36",
"networkId" : "0935d5d1-ba2d-490d-b9f6-6f6a7afe7d9d",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "medium",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b143ab93-33b0-4001-867a-93b374aded99"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0935d5d1-ba2d-490d-b9f6-6f6a7afe7d9d",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/65984880-687f-40d2-a8c2-76dad8727ddd"
}
}
}, {
"id" : "6c292bdd-572f-4873-af0b-d59214c97b43",
"hostId" : "a6689bdf-ab79-45ce-9961-e40afc8e0261",
"ownerIdentityId" : "b6f3d79b-0a6e-4b94-bb8f-2b756d59b6a2",
"createdBy" : "b6f3d79b-0a6e-4b94-bb8f-2b756d59b6a2",
"createdAt" : "2023-12-04T07:55:38.444359Z",
"updatedAt" : "2023-12-04T07:55:38.444359Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-883",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-882",
"productVersion" : "7.3.36",
"networkId" : "adfcd6e0-fec7-4eff-9197-78bfd4c2d37e",
"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/a6689bdf-ab79-45ce-9961-e40afc8e0261"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/adfcd6e0-fec7-4eff-9197-78bfd4c2d37e",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6c292bdd-572f-4873-af0b-d59214c97b43"
}
}
}, {
"id" : "6d3d1433-6d3b-4468-b6d8-06fed5c48d65",
"hostId" : "8fa592b2-f82c-415a-bdb8-0fd56ab13063",
"ownerIdentityId" : "f799aa9a-da71-4631-9a10-d6955ba64f5a",
"createdBy" : "f799aa9a-da71-4631-9a10-d6955ba64f5a",
"createdAt" : "2023-12-04T07:55:36.239924Z",
"updatedAt" : "2023-12-04T07:55:36.239924Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-793",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-792",
"productVersion" : "7.3.36",
"networkId" : "3f570afa-019b-48e6-ac55-7f3ef866a54a",
"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/8fa592b2-f82c-415a-bdb8-0fd56ab13063"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3f570afa-019b-48e6-ac55-7f3ef866a54a",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6d3d1433-6d3b-4468-b6d8-06fed5c48d65"
}
}
}, {
"id" : "6eeaf894-b3b0-4f53-b405-5b5705c0802a",
"hostId" : "aa79143c-e550-4544-9729-a8dbb15ad79b",
"ownerIdentityId" : "ae5c8a48-f3e8-4683-b310-78576b8c44c1",
"createdBy" : "ae5c8a48-f3e8-4683-b310-78576b8c44c1",
"createdAt" : "2023-12-04T07:55:41.537461Z",
"updatedAt" : "2023-12-04T07:55:41.537461Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-994",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-993",
"productVersion" : "7.3.36",
"networkId" : "5e78b7ab-e8e6-4ca6-a8bd-271c816c1d04",
"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/aa79143c-e550-4544-9729-a8dbb15ad79b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5e78b7ab-e8e6-4ca6-a8bd-271c816c1d04",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6eeaf894-b3b0-4f53-b405-5b5705c0802a"
}
}
}, {
"id" : "6f507b6d-9f14-4e4b-b789-9112c8c88b17",
"hostId" : "32b19888-c48a-4ef3-899d-c1eb4e2e4905",
"ownerIdentityId" : "16ad5525-a6e3-4182-9b42-63cdcffd703d",
"createdBy" : "16ad5525-a6e3-4182-9b42-63cdcffd703d",
"createdAt" : "2023-12-04T07:55:40.257247Z",
"updatedAt" : "2023-12-04T07:55:40.257247Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-934",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-933",
"productVersion" : "7.3.36",
"networkId" : "80e0ed02-a0ed-4104-8efa-52d6ebb186a1",
"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/32b19888-c48a-4ef3-899d-c1eb4e2e4905"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/80e0ed02-a0ed-4104-8efa-52d6ebb186a1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6f507b6d-9f14-4e4b-b789-9112c8c88b17"
}
}
}, {
"id" : "7047cbde-4a15-4a8a-84f8-76d0ded5a0d8",
"hostId" : "8f1e1eda-6f80-4306-b25e-be53a3bdd2e2",
"ownerIdentityId" : "7ace15b3-8fad-44c3-b94f-dd38673a55e8",
"createdBy" : "7ace15b3-8fad-44c3-b94f-dd38673a55e8",
"createdAt" : "2023-12-04T07:55:51.344066Z",
"updatedAt" : "2023-12-04T07:55:51.344066Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1394",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1393",
"productVersion" : "7.3.36",
"networkId" : "c348bf68-47f6-415a-8adc-f6b99103d8d4",
"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/8f1e1eda-6f80-4306-b25e-be53a3bdd2e2"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c348bf68-47f6-415a-8adc-f6b99103d8d4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7047cbde-4a15-4a8a-84f8-76d0ded5a0d8"
}
}
}, {
"id" : "7880ea60-b092-433f-b608-8a957fd4babe",
"hostId" : "fac47917-1e6b-43e7-b423-f288e8e4eebf",
"ownerIdentityId" : "270d0c8d-e71b-4421-bd15-34a494838bbe",
"createdBy" : "270d0c8d-e71b-4421-bd15-34a494838bbe",
"createdAt" : "2023-12-04T07:55:42.813903Z",
"updatedAt" : "2023-12-04T07:55:42.813903Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1060",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1059",
"productVersion" : "7.3.36",
"networkId" : "473836e7-d475-4bc1-a37d-388cc2892192",
"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/fac47917-1e6b-43e7-b423-f288e8e4eebf"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/473836e7-d475-4bc1-a37d-388cc2892192",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7880ea60-b092-433f-b608-8a957fd4babe"
}
}
}, {
"id" : "78f75bef-d00f-4a9a-aa82-9c42f284c26c",
"hostId" : "bc8b4a93-76e1-41f8-86a8-cd2fef0d9082",
"ownerIdentityId" : "5f1ca4a7-d4aa-4ff1-b829-b25d64359ae3",
"createdBy" : "5f1ca4a7-d4aa-4ff1-b829-b25d64359ae3",
"createdAt" : "2023-12-04T07:55:47.101312Z",
"updatedAt" : "2023-12-04T07:55:47.101312Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1195",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1194",
"productVersion" : "7.3.36",
"networkId" : "83a7b480-8e2a-4aea-b190-5117b90566c1",
"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/bc8b4a93-76e1-41f8-86a8-cd2fef0d9082"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/83a7b480-8e2a-4aea-b190-5117b90566c1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/78f75bef-d00f-4a9a-aa82-9c42f284c26c"
}
}
}, {
"id" : "7b1a54db-cb8f-4990-b6be-e8e199e77482",
"hostId" : "22f575d1-7bda-42af-b46f-d17ad54fbc29",
"ownerIdentityId" : "2003967c-e24a-40ed-978a-5c2d851a6b64",
"createdBy" : "2003967c-e24a-40ed-978a-5c2d851a6b64",
"createdAt" : "2023-12-04T07:55:42.806089Z",
"updatedAt" : "2023-12-04T07:55:42.806089Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1057",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1056",
"productVersion" : "7.3.36",
"networkId" : "473836e7-d475-4bc1-a37d-388cc2892192",
"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/22f575d1-7bda-42af-b46f-d17ad54fbc29"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/473836e7-d475-4bc1-a37d-388cc2892192",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7b1a54db-cb8f-4990-b6be-e8e199e77482"
}
}
}, {
"id" : "7fd9856a-09b5-4494-8411-bd3ddec968fe",
"hostId" : "966f1c0d-ebc1-445c-882c-5845ab7bdb1b",
"ownerIdentityId" : "003f4f3e-eea9-41a3-9b7c-a987209c2d80",
"createdBy" : "003f4f3e-eea9-41a3-9b7c-a987209c2d80",
"createdAt" : "2023-12-04T07:55:40.238685Z",
"updatedAt" : "2023-12-04T07:55:40.238685Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-928",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-927",
"productVersion" : "7.3.36",
"networkId" : "80e0ed02-a0ed-4104-8efa-52d6ebb186a1",
"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/966f1c0d-ebc1-445c-882c-5845ab7bdb1b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/80e0ed02-a0ed-4104-8efa-52d6ebb186a1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7fd9856a-09b5-4494-8411-bd3ddec968fe"
}
}
}, {
"id" : "801a5cc7-f3f0-452b-8024-9988596feb0e",
"hostId" : "d65ba5b2-502e-430b-9554-27efd0660b84",
"ownerIdentityId" : "d189c066-0140-49e4-b6dd-b6957de15e3e",
"createdBy" : "d189c066-0140-49e4-b6dd-b6957de15e3e",
"createdAt" : "2023-12-04T07:55:40.244523Z",
"updatedAt" : "2023-12-04T07:55:40.244523Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-931",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-930",
"productVersion" : "7.3.36",
"networkId" : "80e0ed02-a0ed-4104-8efa-52d6ebb186a1",
"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/d65ba5b2-502e-430b-9554-27efd0660b84"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/80e0ed02-a0ed-4104-8efa-52d6ebb186a1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/801a5cc7-f3f0-452b-8024-9988596feb0e"
}
}
}, {
"id" : "802087a6-5429-49e6-b402-7f0d380f52cf",
"hostId" : "5a00524e-d426-41d0-9ead-028048961d59",
"ownerIdentityId" : "17fa73f8-a2b4-492b-b204-f57e79675b26",
"createdBy" : "17fa73f8-a2b4-492b-b204-f57e79675b26",
"createdAt" : "2023-12-04T07:55:51.370697Z",
"updatedAt" : "2023-12-04T07:55:51.370697Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1400",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1399",
"productVersion" : "7.3.36",
"networkId" : "c348bf68-47f6-415a-8adc-f6b99103d8d4",
"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/5a00524e-d426-41d0-9ead-028048961d59"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c348bf68-47f6-415a-8adc-f6b99103d8d4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/802087a6-5429-49e6-b402-7f0d380f52cf"
}
}
}, {
"id" : "80749054-0255-4d9b-85b4-d0f24c023198",
"hostId" : "431df73e-a29c-4d54-8a60-2aa13c0c0d83",
"ownerIdentityId" : "d5ab2a98-622f-4005-bb80-ac1c49a3e2d4",
"createdBy" : "d5ab2a98-622f-4005-bb80-ac1c49a3e2d4",
"createdAt" : "2023-12-04T07:55:42.000625Z",
"updatedAt" : "2023-12-04T07:55:42.000625Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1018",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1017",
"productVersion" : "7.3.36",
"networkId" : "3eaeaf0e-8bec-4f00-a26d-17ac86d33735",
"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/431df73e-a29c-4d54-8a60-2aa13c0c0d83"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3eaeaf0e-8bec-4f00-a26d-17ac86d33735",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/80749054-0255-4d9b-85b4-d0f24c023198"
}
}
}, {
"id" : "84b75677-cb74-45cc-b52c-53430705eab0",
"hostId" : null,
"ownerIdentityId" : "f7157a5b-c1b7-4ca8-94f3-e8caa1873557",
"createdBy" : "f7157a5b-c1b7-4ca8-94f3-e8caa1873557",
"createdAt" : "2023-12-04T07:55:44.832473Z",
"updatedAt" : "2023-12-04T07:55:44.988587Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "-pzNS2XNxOByVVjwxnc36",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Test edge router 1701676544",
"productVersion" : "7.3.36",
"networkId" : "bb492bce-3422-4d1e-a247-b4e82517eb9f",
"jwt" : null,
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "ERROR",
"softwareDeploymentStateId" : "f91d3c99-b84f-4b02-a902-5ca81177914e",
"provider" : null,
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bb492bce-3422-4d1e-a247-b4e82517eb9f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/84b75677-cb74-45cc-b52c-53430705eab0"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f91d3c99-b84f-4b02-a902-5ca81177914e",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f91d3c99-b84f-4b02-a902-5ca81177914e"
}
}
}, {
"id" : "8990ebcd-2932-424b-8ffe-2c18d7e0808f",
"hostId" : "18ad0ba7-65f7-4f85-a719-03a6d9a001ad",
"ownerIdentityId" : "59898afb-4d0d-496f-95db-06f716be9374",
"createdBy" : "59898afb-4d0d-496f-95db-06f716be9374",
"createdAt" : "2023-12-04T07:55:45.143707Z",
"updatedAt" : "2023-12-04T07:55:45.143707Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1174",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1173",
"productVersion" : "7.3.36",
"networkId" : "4f576380-1079-400a-9a7e-cf0d47a77581",
"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/18ad0ba7-65f7-4f85-a719-03a6d9a001ad"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4f576380-1079-400a-9a7e-cf0d47a77581",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8990ebcd-2932-424b-8ffe-2c18d7e0808f"
}
}
}, {
"id" : "8a0ebf4c-5fa9-47d6-842f-047f4d2a5fa2",
"hostId" : "011b8771-6398-49ab-8ada-7edb84f6124c",
"ownerIdentityId" : "5db8078e-e841-4bc1-8f44-3284b25b2735",
"createdBy" : "5db8078e-e841-4bc1-8f44-3284b25b2735",
"createdAt" : "2023-12-04T07:55:42.037047Z",
"updatedAt" : "2023-12-04T07:55:42.037047Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1021",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1020",
"productVersion" : "7.3.36",
"networkId" : "3eaeaf0e-8bec-4f00-a26d-17ac86d33735",
"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/011b8771-6398-49ab-8ada-7edb84f6124c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3eaeaf0e-8bec-4f00-a26d-17ac86d33735",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8a0ebf4c-5fa9-47d6-842f-047f4d2a5fa2"
}
}
}, {
"id" : "8aeed2ac-5ee8-4c92-b49c-e00f994fceb6",
"hostId" : "d76ed365-bfe4-4a55-a6ef-076516e0bea5",
"ownerIdentityId" : "2e11c9d7-4a6d-4fd9-9d89-a525e9cbdfe5",
"createdBy" : "2e11c9d7-4a6d-4fd9-9d89-a525e9cbdfe5",
"createdAt" : "2023-12-04T07:55:49.191602Z",
"updatedAt" : "2023-12-04T07:55:49.191602Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1315",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1314",
"productVersion" : "7.3.36",
"networkId" : "284ed1ad-6c90-4151-8327-d79adfcd58f4",
"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/d76ed365-bfe4-4a55-a6ef-076516e0bea5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/284ed1ad-6c90-4151-8327-d79adfcd58f4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8aeed2ac-5ee8-4c92-b49c-e00f994fceb6"
}
}
}, {
"id" : "8bf02d14-1488-427e-971a-84eb88530de8",
"hostId" : "8da3f1b7-0037-4993-bc53-5e18cfc21bc4",
"ownerIdentityId" : "3728d30e-83e6-4c7b-a5cb-e0c91de307a2",
"createdBy" : "3728d30e-83e6-4c7b-a5cb-e0c91de307a2",
"createdAt" : "2023-12-04T07:55:41.266978Z",
"updatedAt" : "2023-12-04T07:55:41.368352Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-976",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-975",
"productVersion" : "7.3.36",
"networkId" : "4d9f13ac-58b0-4edb-9b99-b4ef1799130b",
"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/8da3f1b7-0037-4993-bc53-5e18cfc21bc4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4d9f13ac-58b0-4edb-9b99-b4ef1799130b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8bf02d14-1488-427e-971a-84eb88530de8"
}
}
}, {
"id" : "8d050b73-ef25-4493-89ca-1b8177f2c885",
"hostId" : "0cf073a0-b246-4444-a39f-fa6364be7a3c",
"ownerIdentityId" : "6b902f0b-271a-457f-b9af-09d157eb6499",
"createdBy" : "6b902f0b-271a-457f-b9af-09d157eb6499",
"createdAt" : "2023-12-04T07:55:44.088078Z",
"updatedAt" : "2023-12-04T07:55:44.088078Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1111",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1110",
"productVersion" : "7.3.36",
"networkId" : "ea74c3e3-cd05-438f-9846-4ca666987574",
"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/0cf073a0-b246-4444-a39f-fa6364be7a3c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ea74c3e3-cd05-438f-9846-4ca666987574",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8d050b73-ef25-4493-89ca-1b8177f2c885"
}
}
}, {
"id" : "8e639b48-df6b-4ad5-9144-fa3742a88650",
"hostId" : "b367c9e8-5e3a-48fc-8fc7-ad408af11747",
"ownerIdentityId" : "337385de-4ccc-4070-b472-783278744a40",
"createdBy" : "337385de-4ccc-4070-b472-783278744a40",
"createdAt" : "2023-12-04T07:55:39.121454Z",
"updatedAt" : "2023-12-04T07:55:39.121454Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-919",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-918",
"productVersion" : "7.3.36",
"networkId" : "87b45de9-328a-4e0c-871c-4bfc0be63220",
"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/b367c9e8-5e3a-48fc-8fc7-ad408af11747"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/87b45de9-328a-4e0c-871c-4bfc0be63220",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8e639b48-df6b-4ad5-9144-fa3742a88650"
}
}
}, {
"id" : "8f321017-35d2-4b86-b2db-3c4c657c6829",
"hostId" : "39f3558d-346c-4469-9714-7c7015f66a5a",
"ownerIdentityId" : "27aaa8c8-b115-4c6d-98cf-90229deb96b7",
"createdBy" : "27aaa8c8-b115-4c6d-98cf-90229deb96b7",
"createdAt" : "2023-12-04T07:55:48.845988Z",
"updatedAt" : "2023-12-04T07:55:48.845988Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1294",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1293",
"productVersion" : "7.3.36",
"networkId" : "0935d5d1-ba2d-490d-b9f6-6f6a7afe7d9d",
"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/39f3558d-346c-4469-9714-7c7015f66a5a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0935d5d1-ba2d-490d-b9f6-6f6a7afe7d9d",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8f321017-35d2-4b86-b2db-3c4c657c6829"
}
}
}, {
"id" : "9171671e-1e5e-4924-a4fe-2ba80084a264",
"hostId" : "d9fa487a-3e4f-446c-901d-590dbf43b2b6",
"ownerIdentityId" : "0f49e479-3c12-4188-b67a-8a395d59bd92",
"createdBy" : "0f49e479-3c12-4188-b67a-8a395d59bd92",
"createdAt" : "2023-12-04T07:55:47.897522Z",
"updatedAt" : "2023-12-04T07:55:47.897522Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1255",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1254",
"productVersion" : "7.3.36",
"networkId" : "a801c478-59fb-4aed-9038-d946750b92b7",
"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/d9fa487a-3e4f-446c-901d-590dbf43b2b6"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a801c478-59fb-4aed-9038-d946750b92b7",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9171671e-1e5e-4924-a4fe-2ba80084a264"
}
}
}, {
"id" : "921719d2-0302-43f6-8213-0e46a8d79851",
"hostId" : "f8671ca2-8054-41cb-9b9f-65ab64159607",
"ownerIdentityId" : "076a18d1-d921-474d-bb6c-489c35694cf5",
"createdBy" : "076a18d1-d921-474d-bb6c-489c35694cf5",
"createdAt" : "2023-12-04T07:55:48.233974Z",
"updatedAt" : "2023-12-04T07:55:48.233974Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1273",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1272",
"productVersion" : "7.3.36",
"networkId" : "dfe2a94b-ceee-4e73-a8e8-34c7bc08e405",
"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/f8671ca2-8054-41cb-9b9f-65ab64159607"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dfe2a94b-ceee-4e73-a8e8-34c7bc08e405",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/921719d2-0302-43f6-8213-0e46a8d79851"
}
}
}, {
"id" : "92235990-d341-4eed-bbb6-c8a1f46777aa",
"hostId" : "eb45a13d-d99c-43c1-8596-9499bca177e5",
"ownerIdentityId" : "8a3a592c-11ed-4010-8faa-ec8e3442c94c",
"createdBy" : "8a3a592c-11ed-4010-8faa-ec8e3442c94c",
"createdAt" : "2023-12-04T07:55:49.182214Z",
"updatedAt" : "2023-12-04T07:55:49.182214Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1309",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1308",
"productVersion" : "7.3.36",
"networkId" : "284ed1ad-6c90-4151-8327-d79adfcd58f4",
"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/eb45a13d-d99c-43c1-8596-9499bca177e5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/284ed1ad-6c90-4151-8327-d79adfcd58f4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/92235990-d341-4eed-bbb6-c8a1f46777aa"
}
}
}, {
"id" : "928a6b68-1883-4ec5-90a2-e162eaded20e",
"hostId" : "5c67a8f6-5f8b-4d35-8516-27e6205ea179",
"ownerIdentityId" : "5b7e4cc2-9bad-4a1b-9f88-56d02ac942ac",
"createdBy" : "5b7e4cc2-9bad-4a1b-9f88-56d02ac942ac",
"createdAt" : "2023-12-04T07:55:42.815751Z",
"updatedAt" : "2023-12-04T07:55:42.815751Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1063",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1062",
"productVersion" : "7.3.36",
"networkId" : "473836e7-d475-4bc1-a37d-388cc2892192",
"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/5c67a8f6-5f8b-4d35-8516-27e6205ea179"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/473836e7-d475-4bc1-a37d-388cc2892192",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/928a6b68-1883-4ec5-90a2-e162eaded20e"
}
}
}, {
"id" : "9295bd79-3225-451d-95d1-61d23153df90",
"hostId" : "c30f304d-7063-4a88-8e40-94fdf23fa8d0",
"ownerIdentityId" : "3ab89d8e-ca60-4cc1-8e8f-099e432972f1",
"createdBy" : "3ab89d8e-ca60-4cc1-8e8f-099e432972f1",
"createdAt" : "2023-12-04T07:55:39.113048Z",
"updatedAt" : "2023-12-04T07:55:39.113048Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-910",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-909",
"productVersion" : "7.3.36",
"networkId" : "87b45de9-328a-4e0c-871c-4bfc0be63220",
"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/c30f304d-7063-4a88-8e40-94fdf23fa8d0"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/87b45de9-328a-4e0c-871c-4bfc0be63220",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9295bd79-3225-451d-95d1-61d23153df90"
}
}
}, {
"id" : "92ceb643-5b40-42a9-a4bf-8371a478358e",
"hostId" : "c65c3904-8e43-48f6-b5a0-1c41e977e1b5",
"ownerIdentityId" : "007fb042-ceb0-46d5-8dfe-077d8f45920d",
"createdBy" : "007fb042-ceb0-46d5-8dfe-077d8f45920d",
"createdAt" : "2023-12-04T07:55:50.039022Z",
"updatedAt" : "2023-12-04T07:55:50.039022Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1364",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1363",
"productVersion" : "7.3.36",
"networkId" : "1a4eb51b-f254-4467-afb7-a7a96f060b3b",
"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/c65c3904-8e43-48f6-b5a0-1c41e977e1b5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1a4eb51b-f254-4467-afb7-a7a96f060b3b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/92ceb643-5b40-42a9-a4bf-8371a478358e"
}
}
}, {
"id" : "9449757e-1f50-4334-8f8b-bab6ea7b9ff8",
"hostId" : "e64a39cc-a59b-4b20-bdae-a442011b9bbc",
"ownerIdentityId" : "fd3b6c07-6886-4dae-994e-da433d289d10",
"createdBy" : "fd3b6c07-6886-4dae-994e-da433d289d10",
"createdAt" : "2023-12-04T07:55:41.271716Z",
"updatedAt" : "2023-12-04T07:55:41.271716Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-982",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-981",
"productVersion" : "7.3.36",
"networkId" : "4d9f13ac-58b0-4edb-9b99-b4ef1799130b",
"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/e64a39cc-a59b-4b20-bdae-a442011b9bbc"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4d9f13ac-58b0-4edb-9b99-b4ef1799130b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9449757e-1f50-4334-8f8b-bab6ea7b9ff8"
}
}
}, {
"id" : "94b699cb-dea4-46a6-b992-a086ebd19d98",
"hostId" : "6c3c79dc-5bbd-4299-9059-1bb3699f7b4e",
"ownerIdentityId" : "d37dd0eb-1e4a-44f9-8a1c-832b6715089e",
"createdBy" : "d37dd0eb-1e4a-44f9-8a1c-832b6715089e",
"createdAt" : "2023-12-04T07:55:47.901141Z",
"updatedAt" : "2023-12-04T07:55:47.901141Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1261",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1260",
"productVersion" : "7.3.36",
"networkId" : "a801c478-59fb-4aed-9038-d946750b92b7",
"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/6c3c79dc-5bbd-4299-9059-1bb3699f7b4e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a801c478-59fb-4aed-9038-d946750b92b7",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/94b699cb-dea4-46a6-b992-a086ebd19d98"
}
}
}, {
"id" : "97b8a3b5-f599-4aa8-892c-c1b8eef942c7",
"hostId" : "f3c7970c-64a4-433a-ac14-e626e9c0a22a",
"ownerIdentityId" : "7c1d378f-95ac-4634-8569-6ba38ccf9f49",
"createdBy" : "7c1d378f-95ac-4634-8569-6ba38ccf9f49",
"createdAt" : "2023-12-04T07:55:49.646087Z",
"updatedAt" : "2023-12-04T07:55:49.646087Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1336",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1335",
"productVersion" : "7.3.36",
"networkId" : "d38a7770-ca00-409d-9c4b-898874c36e8e",
"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/f3c7970c-64a4-433a-ac14-e626e9c0a22a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d38a7770-ca00-409d-9c4b-898874c36e8e",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/97b8a3b5-f599-4aa8-892c-c1b8eef942c7"
}
}
}, {
"id" : "98025b9e-f16f-4bfc-8247-a63e9b40462b",
"hostId" : "7a3802f8-b48e-46b0-bb89-f92aa71e1b09",
"ownerIdentityId" : "677be990-0119-4fc2-af3d-7869b1adf47c",
"createdBy" : "677be990-0119-4fc2-af3d-7869b1adf47c",
"createdAt" : "2023-12-04T07:55:37.301602Z",
"updatedAt" : "2023-12-04T07:55:37.301602Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-805",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-804",
"productVersion" : "7.3.36",
"networkId" : "5a4a0a0f-7643-4e75-86e1-61dc67f3eff1",
"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/7a3802f8-b48e-46b0-bb89-f92aa71e1b09"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5a4a0a0f-7643-4e75-86e1-61dc67f3eff1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/98025b9e-f16f-4bfc-8247-a63e9b40462b"
}
}
}, {
"id" : "98103776-e40e-4a9e-8088-1d3475251da4",
"hostId" : "e48f130b-590e-494e-b255-f7a1cf0f3470",
"ownerIdentityId" : "86a43d26-a467-45e5-b4d5-12a8c2dafa0c",
"createdBy" : "86a43d26-a467-45e5-b4d5-12a8c2dafa0c",
"createdAt" : "2023-12-04T07:55:47.450153Z",
"updatedAt" : "2023-12-04T07:55:47.450153Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1219",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1218",
"productVersion" : "7.3.36",
"networkId" : "b21ef6bb-44ef-4cbc-b772-17fc0f6c7acf",
"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/e48f130b-590e-494e-b255-f7a1cf0f3470"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b21ef6bb-44ef-4cbc-b772-17fc0f6c7acf",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/98103776-e40e-4a9e-8088-1d3475251da4"
}
}
}, {
"id" : "98b18856-98b2-4ab9-b0fd-8c11e3218ec9",
"hostId" : "6bcae7ab-ed52-496c-b958-37059a9089f1",
"ownerIdentityId" : "191b93de-13af-49e4-b603-f1ee1d242754",
"createdBy" : "191b93de-13af-49e4-b603-f1ee1d242754",
"createdAt" : "2023-12-04T07:55:43.146393Z",
"updatedAt" : "2023-12-04T07:55:43.146393Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1078",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1077",
"productVersion" : "7.3.36",
"networkId" : "850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"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/6bcae7ab-ed52-496c-b958-37059a9089f1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/98b18856-98b2-4ab9-b0fd-8c11e3218ec9"
}
}
}, {
"id" : "9c1d178d-1c43-4f1f-9639-f0aab29e0dc5",
"hostId" : "8d5b8e99-4339-4d35-942c-5d39ea9694f2",
"ownerIdentityId" : "4c1c6514-6138-4fc9-80e6-24e92b9709ba",
"createdBy" : "4c1c6514-6138-4fc9-80e6-24e92b9709ba",
"createdAt" : "2023-12-04T07:55:49.189845Z",
"updatedAt" : "2023-12-04T07:55:49.189845Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1312",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1311",
"productVersion" : "7.3.36",
"networkId" : "284ed1ad-6c90-4151-8327-d79adfcd58f4",
"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/8d5b8e99-4339-4d35-942c-5d39ea9694f2"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/284ed1ad-6c90-4151-8327-d79adfcd58f4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9c1d178d-1c43-4f1f-9639-f0aab29e0dc5"
}
}
}, {
"id" : "a2518258-57a5-4918-8a34-9ea2fd04d9a6",
"hostId" : "b1826713-60a5-4cb7-bbd5-624f38ea5389",
"ownerIdentityId" : "1153173f-9667-4e84-8259-b05b091e16ff",
"createdBy" : "1153173f-9667-4e84-8259-b05b091e16ff",
"createdAt" : "2023-12-04T07:55:49.203696Z",
"updatedAt" : "2023-12-04T07:55:49.203696Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1318",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1317",
"productVersion" : "7.3.36",
"networkId" : "284ed1ad-6c90-4151-8327-d79adfcd58f4",
"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/b1826713-60a5-4cb7-bbd5-624f38ea5389"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/284ed1ad-6c90-4151-8327-d79adfcd58f4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a2518258-57a5-4918-8a34-9ea2fd04d9a6"
}
}
}, {
"id" : "a453ab4a-709f-4d52-ad52-e46f5fb23fc1",
"hostId" : "a28b93ab-8e36-458e-b895-9bc8915d9982",
"ownerIdentityId" : "8ac60d2c-7cf4-4bc6-8bcd-8f43e215b6d3",
"createdBy" : "8ac60d2c-7cf4-4bc6-8bcd-8f43e215b6d3",
"createdAt" : "2023-12-04T07:55:43.795396Z",
"updatedAt" : "2023-12-04T07:55:43.795396Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1096",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1095",
"productVersion" : "7.3.36",
"networkId" : "8f475bef-82bf-408a-b5da-7ba28841e8ab",
"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/a28b93ab-8e36-458e-b895-9bc8915d9982"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8f475bef-82bf-408a-b5da-7ba28841e8ab",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a453ab4a-709f-4d52-ad52-e46f5fb23fc1"
}
}
}, {
"id" : "a9002946-e389-49b6-8606-37ad6d975ccb",
"hostId" : "f9fec3d5-4163-4834-8c79-443df3814953",
"ownerIdentityId" : "12a51e6b-82ad-463d-87d6-b5c42c1f84fb",
"createdBy" : "12a51e6b-82ad-463d-87d6-b5c42c1f84fb",
"createdAt" : "2023-12-04T07:55:51.815126Z",
"updatedAt" : "2023-12-04T07:55:51.815126Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1418",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1417",
"productVersion" : "7.3.36",
"networkId" : "cd9be487-f518-46e8-9db9-d3563fcd4c18",
"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/f9fec3d5-4163-4834-8c79-443df3814953"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/cd9be487-f518-46e8-9db9-d3563fcd4c18",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a9002946-e389-49b6-8606-37ad6d975ccb"
}
}
}, {
"id" : "aa87d92c-6689-4dc3-a379-b76ed178420f",
"hostId" : "f32c061e-3bcc-405f-8c80-51a1e00ca1a4",
"ownerIdentityId" : "916070c5-1ce6-4e58-a850-79222e7ac06a",
"createdBy" : "916070c5-1ce6-4e58-a850-79222e7ac06a",
"createdAt" : "2023-12-04T07:55:44.096661Z",
"updatedAt" : "2023-12-04T07:55:44.096661Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1114",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1113",
"productVersion" : "7.3.36",
"networkId" : "ea74c3e3-cd05-438f-9846-4ca666987574",
"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/f32c061e-3bcc-405f-8c80-51a1e00ca1a4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ea74c3e3-cd05-438f-9846-4ca666987574",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/aa87d92c-6689-4dc3-a379-b76ed178420f"
}
}
}, {
"id" : "b3578e7b-87ae-4909-8dc6-a96986aa388e",
"hostId" : "ac69bc02-762a-4f93-86dd-aee8f6cb1550",
"ownerIdentityId" : "69bc77f5-ef56-4521-bf17-524aec44dd55",
"createdBy" : "69bc77f5-ef56-4521-bf17-524aec44dd55",
"createdAt" : "2023-12-04T07:55:44.100758Z",
"updatedAt" : "2023-12-04T07:55:44.100758Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1117",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1116",
"productVersion" : "7.3.36",
"networkId" : "ea74c3e3-cd05-438f-9846-4ca666987574",
"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/ac69bc02-762a-4f93-86dd-aee8f6cb1550"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ea74c3e3-cd05-438f-9846-4ca666987574",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b3578e7b-87ae-4909-8dc6-a96986aa388e"
}
}
}, {
"id" : "b3e2206d-6961-4552-8505-6aadb608fe84",
"hostId" : "b867b4cf-a107-412c-8fa6-a8d94a2157dc",
"ownerIdentityId" : "559e901d-b0a1-47e2-b015-b0c0e1850014",
"createdBy" : "559e901d-b0a1-47e2-b015-b0c0e1850014",
"createdAt" : "2023-12-04T07:55:36.206486Z",
"updatedAt" : "2023-12-04T07:55:36.206486Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-784",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-783",
"productVersion" : "7.3.36",
"networkId" : "3f570afa-019b-48e6-ac55-7f3ef866a54a",
"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/b867b4cf-a107-412c-8fa6-a8d94a2157dc"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3f570afa-019b-48e6-ac55-7f3ef866a54a",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b3e2206d-6961-4552-8505-6aadb608fe84"
}
}
}, {
"id" : "b9064fa7-4645-47a2-87d2-a5bdcba4a0e5",
"hostId" : "cc795c44-2d48-43e0-9faf-72426be98a63",
"ownerIdentityId" : "cada7471-42ca-4a5a-a157-aa050024291f",
"createdBy" : "cada7471-42ca-4a5a-a157-aa050024291f",
"createdAt" : "2023-12-04T07:55:49.628162Z",
"updatedAt" : "2023-12-04T07:55:49.628162Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1330",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1329",
"productVersion" : "7.3.36",
"networkId" : "d38a7770-ca00-409d-9c4b-898874c36e8e",
"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/cc795c44-2d48-43e0-9faf-72426be98a63"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d38a7770-ca00-409d-9c4b-898874c36e8e",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b9064fa7-4645-47a2-87d2-a5bdcba4a0e5"
}
}
}, {
"id" : "b9f350d6-4a16-4725-82e7-998a1318b79c",
"hostId" : "4c25ffe7-54a4-413e-b2d8-8151f16b2812",
"ownerIdentityId" : "10bd55c3-d60f-4a49-8df5-d0f84a2573ee",
"createdBy" : "10bd55c3-d60f-4a49-8df5-d0f84a2573ee",
"createdAt" : "2023-12-04T07:55:47.458668Z",
"updatedAt" : "2023-12-04T07:55:47.458668Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1225",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1224",
"productVersion" : "7.3.36",
"networkId" : "b21ef6bb-44ef-4cbc-b772-17fc0f6c7acf",
"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/4c25ffe7-54a4-413e-b2d8-8151f16b2812"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b21ef6bb-44ef-4cbc-b772-17fc0f6c7acf",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b9f350d6-4a16-4725-82e7-998a1318b79c"
}
}
}, {
"id" : "ba0c52de-0b36-488e-bf98-ba00b910bc04",
"hostId" : "766211de-5f15-4f06-96c4-2dd48c64b62a",
"ownerIdentityId" : "07989d82-ae74-40ce-8553-92751e163530",
"createdBy" : "07989d82-ae74-40ce-8553-92751e163530",
"createdAt" : "2023-12-04T07:55:38.954871Z",
"updatedAt" : "2023-12-04T07:55:38.954871Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-898",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-897",
"productVersion" : "7.3.36",
"networkId" : "90924e69-2d96-4e45-8642-63c21dd0ddba",
"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/766211de-5f15-4f06-96c4-2dd48c64b62a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/90924e69-2d96-4e45-8642-63c21dd0ddba",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ba0c52de-0b36-488e-bf98-ba00b910bc04"
}
}
}, {
"id" : "bbb37f81-b9b1-4b8d-af4e-daa86cc1ca5b",
"hostId" : "a890a61c-d250-4b7a-bcc3-be3d0fe19499",
"ownerIdentityId" : "5d04c985-ec40-42e3-9f9d-4940d02f8b72",
"createdBy" : "5d04c985-ec40-42e3-9f9d-4940d02f8b72",
"createdAt" : "2023-12-04T07:55:42.476051Z",
"updatedAt" : "2023-12-04T07:55:42.476051Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1039",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1038",
"productVersion" : "7.3.36",
"networkId" : "bebe3790-0cf1-4916-9949-78402c0d7452",
"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/a890a61c-d250-4b7a-bcc3-be3d0fe19499"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bebe3790-0cf1-4916-9949-78402c0d7452",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bbb37f81-b9b1-4b8d-af4e-daa86cc1ca5b"
}
}
}, {
"id" : "c19ef9de-dcca-42ce-92d5-95b741436fdc",
"hostId" : "50777a09-c2c4-4d8a-9167-94e06de7d3b8",
"ownerIdentityId" : "5c2691a8-7a34-44cc-b9eb-5b9dc4c8f17a",
"createdBy" : "5c2691a8-7a34-44cc-b9eb-5b9dc4c8f17a",
"createdAt" : "2023-12-04T07:55:42.536899Z",
"updatedAt" : "2023-12-04T07:55:42.536899Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1042",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1041",
"productVersion" : "7.3.36",
"networkId" : "bebe3790-0cf1-4916-9949-78402c0d7452",
"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/50777a09-c2c4-4d8a-9167-94e06de7d3b8"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bebe3790-0cf1-4916-9949-78402c0d7452",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c19ef9de-dcca-42ce-92d5-95b741436fdc"
}
}
}, {
"id" : "c209922e-1722-4180-ae03-7079731c788b",
"hostId" : "3a23bfb2-584f-44bd-a9f0-1233e6c7edbc",
"ownerIdentityId" : "22c10f1a-dd4e-4adb-a039-44fd5f69042e",
"createdBy" : "22c10f1a-dd4e-4adb-a039-44fd5f69042e",
"createdAt" : "2023-12-04T07:55:43.170530Z",
"updatedAt" : "2023-12-04T07:55:43.170530Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1084",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1083",
"productVersion" : "7.3.36",
"networkId" : "850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"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/3a23bfb2-584f-44bd-a9f0-1233e6c7edbc"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c209922e-1722-4180-ae03-7079731c788b"
}
}
}, {
"id" : "c66cc5dd-5a1a-41fa-a8b8-8753a1c96bcc",
"hostId" : "4793ae10-083d-4211-8b35-2e3dc77a83aa",
"ownerIdentityId" : "320b5253-4bb9-4911-8c2a-e7c6fad5be74",
"createdBy" : "320b5253-4bb9-4911-8c2a-e7c6fad5be74",
"createdAt" : "2023-12-04T07:55:51.802778Z",
"updatedAt" : "2023-12-04T07:55:51.802778Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1412",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1411",
"productVersion" : "7.3.36",
"networkId" : "cd9be487-f518-46e8-9db9-d3563fcd4c18",
"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/4793ae10-083d-4211-8b35-2e3dc77a83aa"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/cd9be487-f518-46e8-9db9-d3563fcd4c18",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c66cc5dd-5a1a-41fa-a8b8-8753a1c96bcc"
}
}
}, {
"id" : "c822bbd4-3c60-4d6b-91e0-69403af698a7",
"hostId" : "49912265-d6da-447d-9050-0f92e5fe4ede",
"ownerIdentityId" : "9e2c9911-a297-44e2-bb6a-5a8cc0b189c6",
"createdBy" : "9e2c9911-a297-44e2-bb6a-5a8cc0b189c6",
"createdAt" : "2023-12-04T07:55:43.796961Z",
"updatedAt" : "2023-12-04T07:55:43.796961Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1099",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1098",
"productVersion" : "7.3.36",
"networkId" : "8f475bef-82bf-408a-b5da-7ba28841e8ab",
"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/49912265-d6da-447d-9050-0f92e5fe4ede"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8f475bef-82bf-408a-b5da-7ba28841e8ab",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c822bbd4-3c60-4d6b-91e0-69403af698a7"
}
}
}, {
"id" : "cbc4cb8b-6e1f-424e-8361-f4c5c0affe64",
"hostId" : "2d143b42-2846-4155-b14e-df45c6661436",
"ownerIdentityId" : "d4ba75ce-7198-485c-88ac-b4208dfd7004",
"createdBy" : "d4ba75ce-7198-485c-88ac-b4208dfd7004",
"createdAt" : "2023-12-04T07:55:41.559708Z",
"updatedAt" : "2023-12-04T07:55:41.559708Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1000",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-999",
"productVersion" : "7.3.36",
"networkId" : "5e78b7ab-e8e6-4ca6-a8bd-271c816c1d04",
"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/2d143b42-2846-4155-b14e-df45c6661436"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5e78b7ab-e8e6-4ca6-a8bd-271c816c1d04",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cbc4cb8b-6e1f-424e-8361-f4c5c0affe64"
}
}
}, {
"id" : "cd3ec23b-e036-4eb2-9454-c8d36752a563",
"hostId" : "e0e4a55c-cef0-4447-ba87-4ec38cfb36b1",
"ownerIdentityId" : "cab5a0a3-dac7-4452-81b8-1deb69c71e2c",
"createdBy" : "cab5a0a3-dac7-4452-81b8-1deb69c71e2c",
"createdAt" : "2023-12-04T07:55:39.116699Z",
"updatedAt" : "2023-12-04T07:55:39.116699Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-916",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-915",
"productVersion" : "7.3.36",
"networkId" : "87b45de9-328a-4e0c-871c-4bfc0be63220",
"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/e0e4a55c-cef0-4447-ba87-4ec38cfb36b1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/87b45de9-328a-4e0c-871c-4bfc0be63220",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cd3ec23b-e036-4eb2-9454-c8d36752a563"
}
}
}, {
"id" : "cdad00c0-3a6d-44d2-afa3-27c220c12cf6",
"hostId" : "c1d5a6a6-d98b-4eb0-a121-ca87e6b524f3",
"ownerIdentityId" : "64de4a40-3f5a-470c-a542-5ecd3242e7ce",
"createdBy" : "64de4a40-3f5a-470c-a542-5ecd3242e7ce",
"createdAt" : "2023-12-04T07:55:43.148407Z",
"updatedAt" : "2023-12-04T07:55:43.148407Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1081",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1080",
"productVersion" : "7.3.36",
"networkId" : "850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"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/c1d5a6a6-d98b-4eb0-a121-ca87e6b524f3"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cdad00c0-3a6d-44d2-afa3-27c220c12cf6"
}
}
}, {
"id" : "d1edc5d6-5f10-4de8-97a9-ab4d563ea751",
"hostId" : "3a67e88e-a3ed-4abe-9584-0473a1a9ae10",
"ownerIdentityId" : "ca309ec6-aa8a-4508-82d6-78d1213ce9c6",
"createdBy" : "ca309ec6-aa8a-4508-82d6-78d1213ce9c6",
"createdAt" : "2023-12-04T07:55:37.754041Z",
"updatedAt" : "2023-12-04T07:55:37.754041Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-820",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-819",
"productVersion" : "7.3.36",
"networkId" : "fad83308-7117-485f-ad4d-cc657ca2f238",
"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/3a67e88e-a3ed-4abe-9584-0473a1a9ae10"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fad83308-7117-485f-ad4d-cc657ca2f238",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d1edc5d6-5f10-4de8-97a9-ab4d563ea751"
}
}
}, {
"id" : "d2e86c3e-f360-4e0f-a4c0-a017c4e965ab",
"hostId" : "46e10435-39e9-438a-a051-5176ad1bf10d",
"ownerIdentityId" : "74903236-571a-45a2-8bde-ab6fc941146a",
"createdBy" : "74903236-571a-45a2-8bde-ab6fc941146a",
"createdAt" : "2023-12-04T07:55:41.578599Z",
"updatedAt" : "2023-12-04T07:55:41.578599Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1003",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1002",
"productVersion" : "7.3.36",
"networkId" : "5e78b7ab-e8e6-4ca6-a8bd-271c816c1d04",
"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/46e10435-39e9-438a-a051-5176ad1bf10d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5e78b7ab-e8e6-4ca6-a8bd-271c816c1d04",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d2e86c3e-f360-4e0f-a4c0-a017c4e965ab"
}
}
}, {
"id" : "d368656c-cf1c-4d08-80ad-9a31db72c5f5",
"hostId" : "85d1910e-890b-40dc-885e-0166b9c648c2",
"ownerIdentityId" : "ca287fcc-efb5-4204-8be9-b8f2814e1dc7",
"createdBy" : "ca287fcc-efb5-4204-8be9-b8f2814e1dc7",
"createdAt" : "2023-12-04T07:55:41.269876Z",
"updatedAt" : "2023-12-04T07:55:41.269876Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-979",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-978",
"productVersion" : "7.3.36",
"networkId" : "4d9f13ac-58b0-4edb-9b99-b4ef1799130b",
"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/85d1910e-890b-40dc-885e-0166b9c648c2"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4d9f13ac-58b0-4edb-9b99-b4ef1799130b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d368656c-cf1c-4d08-80ad-9a31db72c5f5"
}
}
}, {
"id" : "d3cf19a6-bf46-4d76-9c7c-9e5c2558fe91",
"hostId" : "e7201462-60c2-4ef1-978e-a04cd0f1b184",
"ownerIdentityId" : "913d435c-b314-4038-befd-d6d72f047097",
"createdBy" : "913d435c-b314-4038-befd-d6d72f047097",
"createdAt" : "2023-12-04T07:55:50.616765Z",
"updatedAt" : "2023-12-04T07:55:50.616765Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1382",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1381",
"productVersion" : "7.3.36",
"networkId" : "41eb3944-79fe-4d3b-9118-03b005003375",
"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/e7201462-60c2-4ef1-978e-a04cd0f1b184"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/41eb3944-79fe-4d3b-9118-03b005003375",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d3cf19a6-bf46-4d76-9c7c-9e5c2558fe91"
}
}
}, {
"id" : "d510312b-8358-4627-b4d1-b2f91aa2637f",
"hostId" : "96aae5da-e519-4452-b9a0-7868ebcb82e1",
"ownerIdentityId" : "fef6ce8c-45ad-4316-ad7a-92dd887f308b",
"createdBy" : "fef6ce8c-45ad-4316-ad7a-92dd887f308b",
"createdAt" : "2023-12-04T07:55:36.208785Z",
"updatedAt" : "2023-12-04T07:55:36.208785Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-787",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-786",
"productVersion" : "7.3.36",
"networkId" : "3f570afa-019b-48e6-ac55-7f3ef866a54a",
"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/96aae5da-e519-4452-b9a0-7868ebcb82e1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3f570afa-019b-48e6-ac55-7f3ef866a54a",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d510312b-8358-4627-b4d1-b2f91aa2637f"
}
}
}, {
"id" : "d5a786be-0f3f-43bc-b75a-19481f665a64",
"hostId" : "01d4963d-820b-4ec8-96b4-ce46c5932b23",
"ownerIdentityId" : "29ee1e33-754f-46ca-bceb-1b07052d5e7c",
"createdBy" : "29ee1e33-754f-46ca-bceb-1b07052d5e7c",
"createdAt" : "2023-12-04T07:55:47.163276Z",
"updatedAt" : "2023-12-04T07:55:47.163276Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1211",
"domainName" : null,
"alternateDomainName" : null,
"name" : "test-dns-zone-er-1",
"productVersion" : "7.3.37",
"networkId" : "2b6fca32-1575-4155-b106-f681a7dc12ef",
"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/01d4963d-820b-4ec8-96b4-ce46c5932b23"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2b6fca32-1575-4155-b106-f681a7dc12ef",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d5a786be-0f3f-43bc-b75a-19481f665a64"
}
}
}, {
"id" : "d719b234-fc06-47aa-96d5-0cc23d406414",
"hostId" : "f2dba93d-141d-40ec-ac80-7da49c1521fc",
"ownerIdentityId" : "1fc9c0d5-7ce4-4094-8cd0-ad5ed149c9fd",
"createdBy" : "1fc9c0d5-7ce4-4094-8cd0-ad5ed149c9fd",
"createdAt" : "2023-12-04T07:55:44.371495Z",
"updatedAt" : "2023-12-04T07:55:44.371495Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1132",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1131",
"productVersion" : "7.3.36",
"networkId" : "adfeee33-4e31-4cb5-985f-349037974476",
"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/f2dba93d-141d-40ec-ac80-7da49c1521fc"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/adfeee33-4e31-4cb5-985f-349037974476",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d719b234-fc06-47aa-96d5-0cc23d406414"
}
}
}, {
"id" : "d9819500-3e14-447b-9503-dc6c3cdd3d2a",
"hostId" : "a20e11a5-ee1a-4c34-a671-a195369fa005",
"ownerIdentityId" : "536e1489-2683-455d-896b-9ac3441be5bf",
"createdBy" : "536e1489-2683-455d-896b-9ac3441be5bf",
"createdAt" : "2023-12-04T07:55:36.664335Z",
"updatedAt" : "2023-12-04T07:55:36.806174Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "K15YXmUlEFgwvglx0YqwD",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Test edge router 1701676536",
"productVersion" : "7.3.36",
"networkId" : "3f570afa-019b-48e6-ac55-7f3ef866a54a",
"jwt" : null,
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : true,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "87e67026-1588-433d-95ad-9d73ae3eb332",
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a20e11a5-ee1a-4c34-a671-a195369fa005"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3f570afa-019b-48e6-ac55-7f3ef866a54a",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d9819500-3e14-447b-9503-dc6c3cdd3d2a"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/87e67026-1588-433d-95ad-9d73ae3eb332",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/87e67026-1588-433d-95ad-9d73ae3eb332"
}
}
}, {
"id" : "da7660a1-f078-4326-8f86-d96c4bccfc0f",
"hostId" : "328205ac-96cf-4325-ae25-da8b396cd333",
"ownerIdentityId" : "af7a4dc6-173a-4ec0-a69f-2fe809feea77",
"createdBy" : "af7a4dc6-173a-4ec0-a69f-2fe809feea77",
"createdAt" : "2023-12-04T07:55:36.224898Z",
"updatedAt" : "2023-12-04T07:55:36.224898Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-790",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-789",
"productVersion" : "7.3.36",
"networkId" : "3f570afa-019b-48e6-ac55-7f3ef866a54a",
"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/328205ac-96cf-4325-ae25-da8b396cd333"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3f570afa-019b-48e6-ac55-7f3ef866a54a",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/da7660a1-f078-4326-8f86-d96c4bccfc0f"
}
}
}, {
"id" : "dd3936bb-e1a0-4f39-9cf9-11eac3e1bfb6",
"hostId" : "d7d5887d-aed9-4a9c-b069-30a6adcecd7e",
"ownerIdentityId" : "f045863f-c42b-46f8-9322-43fbf2ff9bed",
"createdBy" : "f045863f-c42b-46f8-9322-43fbf2ff9bed",
"createdAt" : "2023-12-04T07:55:40.754967Z",
"updatedAt" : "2023-12-04T07:55:40.754967Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-964",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-963",
"productVersion" : "7.3.36",
"networkId" : "ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"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/d7d5887d-aed9-4a9c-b069-30a6adcecd7e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ee2e3ddf-29c7-460f-96ff-8a88af5da648",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/dd3936bb-e1a0-4f39-9cf9-11eac3e1bfb6"
}
}
}, {
"id" : "de7177b6-90a6-4262-abc4-a9950e1c299f",
"hostId" : "a5ed1171-d8ea-424e-a0a4-a8c834573b90",
"ownerIdentityId" : "84672a6b-59da-4f10-82e2-8c7c5019ee0a",
"createdBy" : "84672a6b-59da-4f10-82e2-8c7c5019ee0a",
"createdAt" : "2023-12-04T07:55:47.646655Z",
"updatedAt" : "2023-12-04T07:55:47.646655Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1237",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1236",
"productVersion" : "7.3.36",
"networkId" : "9910e086-2fb8-4c24-8cd9-67b70f0f0b8b",
"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/a5ed1171-d8ea-424e-a0a4-a8c834573b90"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9910e086-2fb8-4c24-8cd9-67b70f0f0b8b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/de7177b6-90a6-4262-abc4-a9950e1c299f"
}
}
}, {
"id" : "df16edf6-2676-457a-ba43-e35e4828d163",
"hostId" : "ea6961a7-f18a-400d-bd16-164fa3e13a58",
"ownerIdentityId" : "385fac76-da2e-4d35-a28a-13a3743d1d7e",
"createdBy" : "385fac76-da2e-4d35-a28a-13a3743d1d7e",
"createdAt" : "2023-12-04T07:55:42.070495Z",
"updatedAt" : "2023-12-04T07:55:42.070495Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1031",
"domainName" : null,
"alternateDomainName" : null,
"name" : "test-dns-zone-er-1",
"productVersion" : "7.3.37",
"networkId" : "fd2b8dd3-c5b9-43ea-a954-8786e4239bb6",
"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/ea6961a7-f18a-400d-bd16-164fa3e13a58"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fd2b8dd3-c5b9-43ea-a954-8786e4239bb6",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/df16edf6-2676-457a-ba43-e35e4828d163"
}
}
}, {
"id" : "e0785a02-52ad-4474-9e29-6b3f250c3e69",
"hostId" : "a642cadd-7e11-46eb-9b8e-ed1f0fde0b9d",
"ownerIdentityId" : "d5da263d-7572-4f10-8a51-d46fffecee90",
"createdBy" : "d5da263d-7572-4f10-8a51-d46fffecee90",
"createdAt" : "2023-12-04T07:55:38.057599Z",
"updatedAt" : "2023-12-04T07:55:38.057599Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-841",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-840",
"productVersion" : "7.3.36",
"networkId" : "aee4186a-9ab2-4703-9333-a7dcc4be0e11",
"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/a642cadd-7e11-46eb-9b8e-ed1f0fde0b9d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/aee4186a-9ab2-4703-9333-a7dcc4be0e11",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e0785a02-52ad-4474-9e29-6b3f250c3e69"
}
}
}, {
"id" : "e0811493-9f28-432f-9001-c5c38c3241e5",
"hostId" : "9a1ed1ab-3a34-4ff0-8ab6-ae663c046da9",
"ownerIdentityId" : "8d23429b-c1aa-4ea6-95e6-3a144b603793",
"createdBy" : "8d23429b-c1aa-4ea6-95e6-3a144b603793",
"createdAt" : "2023-12-04T07:55:37.777090Z",
"updatedAt" : "2023-12-04T07:55:37.777090Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-826",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-825",
"productVersion" : "7.3.36",
"networkId" : "fad83308-7117-485f-ad4d-cc657ca2f238",
"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/9a1ed1ab-3a34-4ff0-8ab6-ae663c046da9"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fad83308-7117-485f-ad4d-cc657ca2f238",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e0811493-9f28-432f-9001-c5c38c3241e5"
}
}
}, {
"id" : "e3fc00cb-672f-46fb-8623-0449ff5caebf",
"hostId" : "58242e2b-4fc5-4964-aca4-2b6f3a67ded4",
"ownerIdentityId" : "b1d851b9-d862-4c65-ac3c-93878b1f124b",
"createdBy" : "b1d851b9-d862-4c65-ac3c-93878b1f124b",
"createdAt" : "2023-12-04T07:55:44.699970Z",
"updatedAt" : "2023-12-04T07:55:44.699970Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1162",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1161",
"productVersion" : "7.3.36",
"networkId" : "bb492bce-3422-4d1e-a247-b4e82517eb9f",
"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/58242e2b-4fc5-4964-aca4-2b6f3a67ded4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bb492bce-3422-4d1e-a247-b4e82517eb9f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e3fc00cb-672f-46fb-8623-0449ff5caebf"
}
}
}, {
"id" : "e5550394-c079-4525-88f8-d94a1bee0fc9",
"hostId" : "14a026dc-f20a-4458-add0-012e25cc76bc",
"ownerIdentityId" : "f20a75cc-19c5-4981-b085-5813081cf3b6",
"createdBy" : "f20a75cc-19c5-4981-b085-5813081cf3b6",
"createdAt" : "2023-12-04T07:55:47.659156Z",
"updatedAt" : "2023-12-04T07:55:47.659156Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1240",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1239",
"productVersion" : "7.3.36",
"networkId" : "9910e086-2fb8-4c24-8cd9-67b70f0f0b8b",
"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/14a026dc-f20a-4458-add0-012e25cc76bc"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9910e086-2fb8-4c24-8cd9-67b70f0f0b8b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e5550394-c079-4525-88f8-d94a1bee0fc9"
}
}
}, {
"id" : "e94c239d-5fb3-41e1-a49c-36511e95f9f0",
"hostId" : "dca18a38-4b59-432d-acd4-742b38e21d99",
"ownerIdentityId" : "eb6ecb9f-8c0f-451b-87cb-8ec02207f732",
"createdBy" : "eb6ecb9f-8c0f-451b-87cb-8ec02207f732",
"createdAt" : "2023-12-04T07:55:38.424243Z",
"updatedAt" : "2023-12-04T07:55:38.424243Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-877",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-876",
"productVersion" : "7.3.36",
"networkId" : "adfcd6e0-fec7-4eff-9197-78bfd4c2d37e",
"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/dca18a38-4b59-432d-acd4-742b38e21d99"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/adfcd6e0-fec7-4eff-9197-78bfd4c2d37e",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e94c239d-5fb3-41e1-a49c-36511e95f9f0"
}
}
}, {
"id" : "ea7113e3-498c-46db-a24e-020d4f706f81",
"hostId" : "3cad68c4-644c-4802-8e7f-02a2f4407088",
"ownerIdentityId" : "9d5b6ab5-4f20-482b-b98c-e78eb31f37a5",
"createdBy" : "9d5b6ab5-4f20-482b-b98c-e78eb31f37a5",
"createdAt" : "2023-12-04T07:55:38.267253Z",
"updatedAt" : "2023-12-04T07:55:38.267253Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-865",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-864",
"productVersion" : "7.3.36",
"networkId" : "ec166a5f-4872-4fa0-9a49-02736868fff1",
"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/3cad68c4-644c-4802-8e7f-02a2f4407088"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec166a5f-4872-4fa0-9a49-02736868fff1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ea7113e3-498c-46db-a24e-020d4f706f81"
}
}
}, {
"id" : "eb001a81-e0bb-459f-907c-2e4180a89d07",
"hostId" : "fe795353-7a47-4af5-8aa4-250d407fed9f",
"ownerIdentityId" : "28bbe3b9-894b-440c-8bc5-a4e7e95e6bda",
"createdBy" : "28bbe3b9-894b-440c-8bc5-a4e7e95e6bda",
"createdAt" : "2023-12-04T07:55:51.791809Z",
"updatedAt" : "2023-12-04T07:55:51.791809Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1409",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1408",
"productVersion" : "7.3.36",
"networkId" : "cd9be487-f518-46e8-9db9-d3563fcd4c18",
"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/fe795353-7a47-4af5-8aa4-250d407fed9f"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/cd9be487-f518-46e8-9db9-d3563fcd4c18",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/eb001a81-e0bb-459f-907c-2e4180a89d07"
}
}
}, {
"id" : "ec2b5971-8708-4f91-8dd2-3ec11cf5641d",
"hostId" : "3cdfb6e0-7acc-4458-9ae9-2572c495afad",
"ownerIdentityId" : "66f2dcf5-78f1-4f53-b7b7-647986c8dda5",
"createdBy" : "66f2dcf5-78f1-4f53-b7b7-647986c8dda5",
"createdAt" : "2023-12-04T07:55:45.238264Z",
"updatedAt" : "2023-12-04T07:55:45.337859Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "rDY0JzNpmZa48olTArym3",
"domainName" : "ec2b5971-8708-4f91-8dd2-3ec11cf5641d.fake.netfoundry.io",
"alternateDomainName" : null,
"name" : "Test edge router 1701676545",
"productVersion" : "7.3.36",
"networkId" : "4f576380-1079-400a-9a7e-cf0d47a77581",
"jwt" : "abcJWT",
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : true,
"online" : false,
"verified" : false,
"status" : "ERROR",
"softwareDeploymentStateId" : "ce7a1510-3145-4860-8fa8-9b9935519b9d",
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3cdfb6e0-7acc-4458-9ae9-2572c495afad"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4f576380-1079-400a-9a7e-cf0d47a77581",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ec2b5971-8708-4f91-8dd2-3ec11cf5641d"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ce7a1510-3145-4860-8fa8-9b9935519b9d",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/ce7a1510-3145-4860-8fa8-9b9935519b9d"
}
}
}, {
"id" : "ed165034-233a-45b6-a98a-7e238786ade7",
"hostId" : "bd85b012-06a6-4de7-972a-53e0301e361e",
"ownerIdentityId" : "ea9ea6dd-ee5c-4700-826a-7b07d8cbd319",
"createdBy" : "ea9ea6dd-ee5c-4700-826a-7b07d8cbd319",
"createdAt" : "2023-12-04T07:55:42.538946Z",
"updatedAt" : "2023-12-04T07:55:42.538946Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1045",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1044",
"productVersion" : "7.3.36",
"networkId" : "bebe3790-0cf1-4916-9949-78402c0d7452",
"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/bd85b012-06a6-4de7-972a-53e0301e361e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bebe3790-0cf1-4916-9949-78402c0d7452",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ed165034-233a-45b6-a98a-7e238786ade7"
}
}
}, {
"id" : "eddf58a2-44b0-427a-9349-130158941a6b",
"hostId" : "34298baf-2757-4cd5-9857-5292f19cbd27",
"ownerIdentityId" : "d63c6db0-af5e-49b4-a7d9-f8d51ef3fa4c",
"createdBy" : "d63c6db0-af5e-49b4-a7d9-f8d51ef3fa4c",
"createdAt" : "2023-12-04T07:55:38.076170Z",
"updatedAt" : "2023-12-04T07:55:38.076170Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-847",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-846",
"productVersion" : "7.3.36",
"networkId" : "aee4186a-9ab2-4703-9333-a7dcc4be0e11",
"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/34298baf-2757-4cd5-9857-5292f19cbd27"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/aee4186a-9ab2-4703-9333-a7dcc4be0e11",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/eddf58a2-44b0-427a-9349-130158941a6b"
}
}
}, {
"id" : "eef45ec4-7b87-4bc5-b5dc-c6a0eed23402",
"hostId" : "d1fd43dc-f062-49ab-87b3-4b7d0b4db1a1",
"ownerIdentityId" : "d51bfe3a-d4e9-4870-9afc-771231248021",
"createdBy" : "d51bfe3a-d4e9-4870-9afc-771231248021",
"createdAt" : "2023-12-04T07:55:47.462842Z",
"updatedAt" : "2023-12-04T07:55:47.462842Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1228",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1227",
"productVersion" : "7.3.36",
"networkId" : "b21ef6bb-44ef-4cbc-b772-17fc0f6c7acf",
"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/d1fd43dc-f062-49ab-87b3-4b7d0b4db1a1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b21ef6bb-44ef-4cbc-b772-17fc0f6c7acf",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/eef45ec4-7b87-4bc5-b5dc-c6a0eed23402"
}
}
}, {
"id" : "f42808ba-9c14-4d13-8c27-c8c4a50fa592",
"hostId" : "a36eeb5c-f1f7-4e24-9ce6-198d5693af3e",
"ownerIdentityId" : "b155efc6-f6a4-4bdf-93ec-4a789f90204a",
"createdBy" : "b155efc6-f6a4-4bdf-93ec-4a789f90204a",
"createdAt" : "2023-12-04T07:55:43.829797Z",
"updatedAt" : "2023-12-04T07:55:43.829797Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1102",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1101",
"productVersion" : "7.3.36",
"networkId" : "8f475bef-82bf-408a-b5da-7ba28841e8ab",
"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/a36eeb5c-f1f7-4e24-9ce6-198d5693af3e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8f475bef-82bf-408a-b5da-7ba28841e8ab",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f42808ba-9c14-4d13-8c27-c8c4a50fa592"
}
}
}, {
"id" : "f4f1fea6-c455-4be7-a648-085126f361f7",
"hostId" : "dddc51db-7fab-4476-8eaa-759bd3271f8e",
"ownerIdentityId" : "395e63c7-e73c-47a4-b6c9-87ad78dfa24e",
"createdBy" : "395e63c7-e73c-47a4-b6c9-87ad78dfa24e",
"createdAt" : "2023-12-04T07:55:48.254483Z",
"updatedAt" : "2023-12-04T07:55:48.254483Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1279",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1278",
"productVersion" : "7.3.36",
"networkId" : "dfe2a94b-ceee-4e73-a8e8-34c7bc08e405",
"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/dddc51db-7fab-4476-8eaa-759bd3271f8e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dfe2a94b-ceee-4e73-a8e8-34c7bc08e405",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f4f1fea6-c455-4be7-a648-085126f361f7"
}
}
}, {
"id" : "f7185130-3c1c-404a-8b34-1780f35caf27",
"hostId" : "ed8b5ec4-9df2-4fe8-a3d3-09666f3df871",
"ownerIdentityId" : "67036e21-06c8-4c70-bba0-6e197539f75d",
"createdBy" : "67036e21-06c8-4c70-bba0-6e197539f75d",
"createdAt" : "2023-12-04T07:55:40.292812Z",
"updatedAt" : "2023-12-04T07:55:40.292812Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-947",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-ziti-features-946",
"productVersion" : "7.3.33",
"networkId" : "8563fce0-4aa6-408d-871d-bb652204f316",
"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/ed8b5ec4-9df2-4fe8-a3d3-09666f3df871"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8563fce0-4aa6-408d-871d-bb652204f316",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f7185130-3c1c-404a-8b34-1780f35caf27"
}
}
}, {
"id" : "f72c99e3-bfe1-42e1-b30d-90f9fb857dc0",
"hostId" : "9fa49857-fc16-43bc-b07a-6ef1681fd247",
"ownerIdentityId" : "43197c74-1c57-4601-a6aa-8698dea55555",
"createdBy" : "43197c74-1c57-4601-a6aa-8698dea55555",
"createdAt" : "2023-12-04T07:55:47.454062Z",
"updatedAt" : "2023-12-04T07:55:47.454062Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1222",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1221",
"productVersion" : "7.3.36",
"networkId" : "b21ef6bb-44ef-4cbc-b772-17fc0f6c7acf",
"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/9fa49857-fc16-43bc-b07a-6ef1681fd247"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b21ef6bb-44ef-4cbc-b772-17fc0f6c7acf",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f72c99e3-bfe1-42e1-b30d-90f9fb857dc0"
}
}
}, {
"id" : "f7ed36fc-5746-4625-8c60-c37f0b2aacac",
"hostId" : "8ca803d2-09e7-4516-bfcd-0c48acdc9718",
"ownerIdentityId" : "28ebf4be-1388-406c-96ce-1efd5f58d31f",
"createdBy" : "28ebf4be-1388-406c-96ce-1efd5f58d31f",
"createdAt" : "2023-12-04T07:55:50.598048Z",
"updatedAt" : "2023-12-04T07:55:50.598048Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1376",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1375",
"productVersion" : "7.3.36",
"networkId" : "41eb3944-79fe-4d3b-9118-03b005003375",
"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/8ca803d2-09e7-4516-bfcd-0c48acdc9718"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/41eb3944-79fe-4d3b-9118-03b005003375",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f7ed36fc-5746-4625-8c60-c37f0b2aacac"
}
}
}, {
"id" : "fa433837-f275-4744-b243-abc21f8ea95d",
"hostId" : "3f9169a0-3e75-4e9c-a930-c9011970b622",
"ownerIdentityId" : "b0cdaf54-68eb-4579-a3b8-da70edb4daed",
"createdBy" : "b0cdaf54-68eb-4579-a3b8-da70edb4daed",
"createdAt" : "2023-12-04T07:55:43.132256Z",
"updatedAt" : "2023-12-04T07:55:43.132256Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1075",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1074",
"productVersion" : "7.3.36",
"networkId" : "850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"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/3f9169a0-3e75-4e9c-a930-c9011970b622"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/850441cb-dd4a-4a3c-a843-aeaa4dcd1cc5",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fa433837-f275-4744-b243-abc21f8ea95d"
}
}
}, {
"id" : "faa5f71a-6feb-4c9f-bd2a-5788ce139537",
"hostId" : "b01e4eab-7484-405a-b1c8-02fa8e958332",
"ownerIdentityId" : "72b73782-74ee-41a8-bf08-938a170371ea",
"createdBy" : "72b73782-74ee-41a8-bf08-938a170371ea",
"createdAt" : "2023-12-04T07:55:40.263549Z",
"updatedAt" : "2023-12-04T07:55:40.263549Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-937",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-936",
"productVersion" : "7.3.36",
"networkId" : "80e0ed02-a0ed-4104-8efa-52d6ebb186a1",
"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/b01e4eab-7484-405a-b1c8-02fa8e958332"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/80e0ed02-a0ed-4104-8efa-52d6ebb186a1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/faa5f71a-6feb-4c9f-bd2a-5788ce139537"
}
}
}, {
"id" : "fd6d0346-d4d5-40fd-a8fd-c0eb1dc62470",
"hostId" : "6f62ffdb-1208-4c25-8630-b8cdf0d72069",
"ownerIdentityId" : "91da9f72-a805-49cb-ac6a-04c04ff39bbc",
"createdBy" : "91da9f72-a805-49cb-ac6a-04c04ff39bbc",
"createdAt" : "2023-12-04T07:55:42.826138Z",
"updatedAt" : "2023-12-04T07:55:42.826138Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1066",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1065",
"productVersion" : "7.3.36",
"networkId" : "473836e7-d475-4bc1-a37d-388cc2892192",
"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/6f62ffdb-1208-4c25-8630-b8cdf0d72069"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/473836e7-d475-4bc1-a37d-388cc2892192",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fd6d0346-d4d5-40fd-a8fd-c0eb1dc62470"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers"
}
},
"page" : {
"size" : 3500,
"totalElements" : 142,
"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/5901dbf3-d4dd-48c4-8107-50de8222e3ee' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ6Q2hsREJEUVpKUmNRRmNhUGRWdENnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjEzOGZlNWZjLWVlYmEtNDNjYy1iOTg1LTEzNTAwYjEyYjQ0NCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU1OCwiZXhwIjoxNzAxNjgwMTU4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjZjN2I5Yjc1LTM1ODYtNDk1OS05OTQzLTJmMWE0NGZlZGY2ZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU1OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.QOVty_0vomSngt7UcbPnr8gMjQoVUq3MKw7VIBEr2L4J2i6PJjEizMzbgoCEOcJXkYTfmESiuzUaSS8rwoncWrr4JMAzYLaAvUZ3yUE_G_1Jf-dTTRcncDOjS-Ilwp_jGcI7Hwv5MVxCD0OJN4-Zp1nUDHNjCTfD-EN9i_Bgw_ad31MtJiqCx9EfDw3Ql5TZ-zpOmM3sfU65VPSgYigIFqf52HkAuTWS0A2TTgNU5YwHJth7XTA8ZcziYSkdTaF6YY0QmCAJJp5ZVlVytc69Yi53oYncc5i9pqOc5DtTsvEL0CtDoJ8N3yuOlrgFb1z5d0J7nazbxkOTgkG05kk1pQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1743
{
"id" : "5901dbf3-d4dd-48c4-8107-50de8222e3ee",
"hostId" : "6bc747aa-542e-473d-8ccc-9488a7a9b18d",
"ownerIdentityId" : "9888d9c5-577d-475d-be2b-66245e5401c9",
"createdBy" : "9888d9c5-577d-475d-be2b-66245e5401c9",
"createdAt" : "2023-12-04T07:55:58.270127Z",
"updatedAt" : "2023-12-04T07:55:58.270127Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1463",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1462",
"productVersion" : "7.3.36",
"networkId" : "af931a49-e905-435e-acf3-2967ec64c7ca",
"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/6bc747aa-542e-473d-8ccc-9488a7a9b18d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/af931a49-e905-435e-acf3-2967ec64c7ca",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5901dbf3-d4dd-48c4-8107-50de8222e3ee"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8a6d58dc-d1cb-4fd1-8518-66f69daa6270",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/8a6d58dc-d1cb-4fd1-8518-66f69daa6270"
}
}
}
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.eyJqdGkiOiJBZTZzdTc5ajdxdHN1Z3ZqN3pzZUx3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImY3MTU3YTViLWMxYjctNGNhOC05NGYzLWU4Y2FhMTg3MzU1NyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU0NCwiZXhwIjoxNzAxNjgwMTQ0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImUyNDdmOWRlLWE4OWEtNDgzYS05MDhmLTM4MzQ1OGM4NDY5Y1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU0NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Hbf7giJzgZ-EFlXTJmoJXIpZ9j6EnkqZJeSHSAZAznURuKKb7z30z_b4XNN9X7bSLd-lfjFirlmqVCoD2Xci-g10hnz82j0k209_yOwf8ZfvS6qJKXXX-U5O0RDio5yZHd1R9jKxiLsxUOFdC-hYwZ3MookBGCwyiKUKztWDh6tXyKQxqxT3YTCV2HTvUcDvuo7mQnEwl62iotu2Kj2Bm6fsJn9fw0TqO1aLFGvx-5jr8zSFt8N-lOc8IPIJLoBDhkD3x1haslQ9B_dxgZp6UpwOsQW5HGxhhWpOzYXPvDT95UZa_AXZWC_tE1-agpR1qR1C3zkCRYfA15pDRS0sZA' \
-d '{"name":"Test edge router 1701676544","networkId":"bb492bce-3422-4d1e-a247-b4e82517eb9f","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: 1567
{
"id" : "84b75677-cb74-45cc-b52c-53430705eab0",
"hostId" : null,
"ownerIdentityId" : "f7157a5b-c1b7-4ca8-94f3-e8caa1873557",
"createdBy" : "f7157a5b-c1b7-4ca8-94f3-e8caa1873557",
"createdAt" : "2023-12-04T07:55:44.832473Z",
"updatedAt" : "2023-12-04T07:55:44.832473Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : null,
"domainName" : null,
"alternateDomainName" : null,
"name" : "Test edge router 1701676544",
"productVersion" : "7.3.36",
"networkId" : "bb492bce-3422-4d1e-a247-b4e82517eb9f",
"jwt" : null,
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "NEW",
"softwareDeploymentStateId" : null,
"provider" : null,
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bb492bce-3422-4d1e-a247-b4e82517eb9f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/84b75677-cb74-45cc-b52c-53430705eab0"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f91d3c99-b84f-4b02-a902-5ca81177914e",
"deprecation" : "Use software-deployment-state link instead"
},
"software-deployment-state" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/f91d3c99-b84f-4b02-a902-5ca81177914e"
}
}
}
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/850e5fc4-4cdc-415c-ad1c-d2320e4c144d' -i -X PATCH \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJkLWVCdkh6UTl1TzlNU1FoQi00TERnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjcyYWM1Nzg2LTExYjgtNDE4OS1iZDYwLTViOWFlZjM3MWYzOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU1OCwiZXhwIjoxNzAxNjgwMTU4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImJjNjlmMTAzLWQ0NmUtNDEzMC05NGM1LTQ4MzM0ZTg5NzUxZVwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU1OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.at3YeEo7AvRrGHlCN6tzBEbp7mUKMY4udiICpmmq7xu3KkC9KVvsrssF3cR-CiYV1tK4l4qdCXccxYSG4RRGrofNapIqIaQXDJ8jYVsPOXinmoBOIg9HKMfGu77YsRHi6OvJ7v3p5R-0SbeRGsAhSowj9_H1A5QOd3EHZ7ffQ6rB7Cyc-DewCz21KpM9uKMPrvZ1Jgz-dBVEeQ28xL1zbl_CBvnXtMHjHMZdoCRFW9LJ4S1QNcp3Amzv4iwsXEkgfmqXJXqxb64Nf__IEzqZdpacgxadTnmLco-fdXrMvP0t2RRCoWQqiZ20O4OF35tX0hX--GpWEHl4HjGvpcZamQ' \
-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: 1331
{
"id" : "850e5fc4-4cdc-415c-ad1c-d2320e4c144d",
"hostId" : "0118eb63-76d7-4add-9d7c-a52b9469c075",
"ownerIdentityId" : "57d5b61c-0407-43af-a47c-37d40b7c9e32",
"createdBy" : "57d5b61c-0407-43af-a47c-37d40b7c9e32",
"createdAt" : "2023-12-04T07:55:57.992151Z",
"updatedAt" : "2023-12-04T07:55:58.024891Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-1445",
"domainName" : null,
"alternateDomainName" : null,
"name" : "Updated name",
"productVersion" : "7.3.36",
"networkId" : "9dcfdcaf-348c-4c88-a7fc-9701f5d6e80a",
"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/0118eb63-76d7-4add-9d7c-a52b9469c075"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9dcfdcaf-348c-4c88-a7fc-9701f5d6e80a",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/850e5fc4-4cdc-415c-ad1c-d2320e4c144d"
}
}
}
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/94a80a08-00a2-4981-9f5e-2a13068fa47a' -i -X DELETE \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJpVGpoWjFlOTFhbk1QeVRucHhmc1dnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjgwNzAzOTQ5LTgzODctNDZhMy1hMGY2LTJhYzY2Nzc4NDU5NiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjU0OCwiZXhwIjoxNzAxNjgwMTQ4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjIxYmYxYWVkLTdkNWQtNGEwMy04N2M1LTg5ZmIwNzFhNTJkNFwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjU0OH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.U7ahdUzLADLYwsnUqyvEwfOIp-JEygJa9vaUpUdcI37bQpsZv9q7vIfnmUGyMqZOxiCEWQAvJeYvmf_x33Za7eeee7opaHBaQpYqZG4tljo1q13pkhdr4yWkRRtk2DlSRUJ68esiP81tKVViRuAm4rZKTa9NlE8eB6QsohnAEZKtZo_9RGP5CPjSmTmk_20Bc6yMoFbdR6lScV0RlngslsS-l5MknOCGGLLSXiZg9_1z2ukmD5XEY_Blak_803rfBWmqfnMlcV0GxQpPeVbIx7EKRtAhyh-ccqQeLXmgi9gq4Nytc0s1HV-Ra-P4p1Wc1FFbhobb9QpbIID3VnEF_Q'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1362
{
"id" : "94a80a08-00a2-4981-9f5e-2a13068fa47a",
"hostId" : "19e7dced-87c2-46e2-a468-3366b712704e",
"ownerIdentityId" : "e7a7d8a8-b68f-4524-b4e0-f242ab9c69c4",
"createdBy" : "e7a7d8a8-b68f-4524-b4e0-f242ab9c69c4",
"createdAt" : "2023-12-04T07:55:48.235768Z",
"updatedAt" : "2023-12-04T07:55:48.364681Z",
"deletedBy" : "80703949-8387-46a3-a0f6-2ac667784596",
"deletedAt" : null,
"zitiId" : "ziti-id-1276",
"domainName" : null,
"alternateDomainName" : null,
"name" : "er-test-1275",
"productVersion" : "7.3.36",
"networkId" : "dfe2a94b-ceee-4e73-a8e8-34c7bc08e405",
"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/19e7dced-87c2-46e2-a468-3366b712704e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dfe2a94b-ceee-4e73-a8e8-34c7bc08e405",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/94a80a08-00a2-4981-9f5e-2a13068fa47a"
}
}
}
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]. |
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.eyJqdGkiOiJtbEs2QXgwQmFKQlpLbi1KQzNvVWNRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhiOTQyNGY4LTBlZWQtNDE5Zi1hMDU3LWNiOGU3ODhjODExMCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjUxNCwiZXhwIjoxNzAxNjgwMTE0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjM0YzQwZjVjLTU4YjItNGJjMC1iYzkxLWMwYWQzNDhkZTg4NFwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjUxNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.JZZZay8qk9x9aGbwMHhGHx7hAAitPYQCqMGoOmz6Te794J-i7qhPuw0AUgVoPBNh0_pkL7i7fUjhlYXuiOOWg6FixW32GnOAXTuSXrHo4Id1z3DgFHqHPY7ulQt-j9uZ8ZqIgibtUN9X0DU1dUvnxdQiWlfv4ZNllJJvNf80DA4W-mjGxcPU1hSQb9kiz_qpOc-SZSWaxVZRf5KDdfNQkIW-QrpV36xBKx5zgW6q3DHwSKvnWSVN3txC_Fszvxbt7izDw96WVMPjv6jXANvzkGiArbx-iNE-61MBrrF6Zfx-pyR13L-0MTakGhWOj0rwYXGpb4LcJMsujLfSvplYxg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1304
{
"_embedded" : {
"edgeRouterPolicyList" : [ {
"id" : "c694475e-60f6-4fb9-9426-ae62a21ac638",
"networkId" : "8ec787a9-eb8f-4845-b795-c5ad40747b52",
"zitiId" : "00875609-b4af-42d4-bc3e-baa6a940417c",
"name" : "YzD7t1CT5Rvv38CBsf-56",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"ownerIdentityId" : "2fd2cfd5-a193-4aed-8137-7d2dd6bf4df2",
"createdBy" : "2fd2cfd5-a193-4aed-8137-7d2dd6bf4df2",
"createdAt" : "2023-12-04T07:55:14.933893Z",
"updatedAt" : "2023-12-04T07:55:14.933893Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ec787a9-eb8f-4845-b795-c5ad40747b52",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/c694475e-60f6-4fb9-9426-ae62a21ac638"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies"
}
},
"page" : {
"size" : 3500,
"totalElements" : 1,
"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/9c255d26-5675-4b9a-8fb7-40b44d2d8883' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJzT3RRZ202WWwtQ1BOa3JzQ0xsWFBnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjM2YTFlMzcwLWM4NzMtNDZjYi1iZDIyLTIxYTQ3YWYyNTZhMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjUxNSwiZXhwIjoxNzAxNjgwMTE1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjZiYzZlYWYyLTU3MTQtNDAxNS1iMDlkLWI1MDRhNjBhOTIyYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjUxNX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.aUvqEulKtb8-myR41uxQe4LZB-gyOib4cRZdLLDqO3NnnZdjoUZALCdt138_81QV0K989DkJ8U6sLNz3DVy3WFnIb1h3CxxCqI6Nz4S4fJmbPfwWdntifTBC03scW6gbhecEHDlDorfLrbxRERQ1pOF6pdH6_VgIs_wuyyMsqRl8sM2_ClI_xhz0XoIw2wDyzH0ui0NCXPYw1DxA7FsIhnJKhF8pdk9GXBuLoqhEN35Jia27n6OKRHjFLETzZqz2MvLUeVH-RrIYwkCDG7hDVLHeNF1E890jzlbnJzRsVGs__ISTq9HEz2QlhEP1Yzk-8W9GW4TnFfIvL5wB9hlQiQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 902
{
"id" : "9c255d26-5675-4b9a-8fb7-40b44d2d8883",
"networkId" : "356d8f58-41a2-4c71-8bb6-e621fde48a25",
"zitiId" : "f17c9563-881b-4654-8684-b4a93b793a2b",
"name" : "erp-754",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"ownerIdentityId" : "361be3a7-55bf-4e1f-ac8e-5dbe5f53eb03",
"createdBy" : "361be3a7-55bf-4e1f-ac8e-5dbe5f53eb03",
"createdAt" : "2023-12-04T07:55:15.796113Z",
"updatedAt" : "2023-12-04T07:55:15.796113Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/356d8f58-41a2-4c71-8bb6-e621fde48a25",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/9c255d26-5675-4b9a-8fb7-40b44d2d8883"
}
}
}
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.eyJqdGkiOiJQT3ppbVMycjc2TTJRY1pqZ1c2a0tnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjdiZDc4NmUzLTljNDUtNDM2NC05MjdiLWJmMDI4MmZkNGYxMCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjUxNSwiZXhwIjoxNzAxNjgwMTE1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjZhNzEzOTk2LTI5ZGItNDE0OC1iOWU4LWQ2M2JlMjFmNmE2N1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjUxNX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ZNVPysDJ9eoNshPkod2hpcuCrJeyBAERIM-4RjlVRZUN63_Fkq91YuoY8pa3xpuLnkL1HuGd79og2x6l7-9TzaYRMXEDnMkXxJh-wJvtH_UPwj1x20qojYk2zqjGa3_xEkv8BkC6OWoX4yjq-wXyzi1MrVsSVbTHc2a9K8u9-nT67o0fLGeZE37g80s-LEFTWSoRKjH7IkjN1QHM6Y3o-usX5ra-6L3DogsHnwdNxU0iVywJ_nUnYtMOZknGzFzrzpmeOQCyO9FRpLfPOvuSDggRyYOlwNgpGcEE5EV_ymWkxduymW1m7G8N8Q5JQO0oF0NKcF3AB9QRWKABoc8Ovw' \
-d '{"name":"Test edge router policy 1701676515","networkId":"7a878acc-21f0-462b-a0d6-74f57a04a954","semantic":"AnyOf","endpointAttributes":["#topclients"],"edgeRouterAttributes":["#westrouters"]}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1148
{
"id" : "01d1840d-68c2-470c-9ccc-8bdb00e3c3f8",
"networkId" : "7a878acc-21f0-462b-a0d6-74f57a04a954",
"zitiId" : "ziti.id.d22xqzvh",
"name" : "Test edge router policy 1701676515",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ "#topclients" ],
"edgeRouterAttributes" : [ "#westrouters" ],
"exclusiveType" : null,
"ownerIdentityId" : "7bd786e3-9c45-4364-927b-bf0282fd4f10",
"createdBy" : "7bd786e3-9c45-4364-927b-bf0282fd4f10",
"createdAt" : "2023-12-04T07:55:15.416225Z",
"updatedAt" : "2023-12-04T07:55:15.550291Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/7a878acc-21f0-462b-a0d6-74f57a04a954",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/01d1840d-68c2-470c-9ccc-8bdb00e3c3f8"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/d8b7f2a8-8617-42d7-958e-9bd468f09f65",
"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/07ef0432-15f7-40ae-8b30-df2939fa2acd' -i -X PUT \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3bUpJci12MkZ4SkZFM0FRT0pqQW1RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjE1NjRlNzFjLTVlMWItNDQwZi05ZjgyLWZlMTRkZjc3MGVjZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjUxNywiZXhwIjoxNzAxNjgwMTE3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImEyYzc5ZWM4LWZjMDYtNDg5OS04OGIwLTc3ZmMzNGU2ODY5YlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjUxN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Pd7RTFT7MPcjVnoKAtXhPne6q1fQkXSgs7_NYrGmSYITXWfp5PgJee9PUiglGEWeRhetMDIYLd0exKc3YDrz4a6MGAh8mKs5-V5V7MXmCc8G9QMGim7rrYloUOHXY0-Fv_sAS_mIQ71IFxvzv8v8tKskYQj8pjGQF0zSraWPysIfm5ciMBuhxLvPw8vLP8cw3lH3s_8Q14ueSsce7l9j5AMp-MyYahP3_S8mTuEd9yoF7m639-sNkwcCMwGSFmPVkGktfFGT2pAngUeTr7klc4QvR1HVUyVkct9QHgHMHjUSuwXnq9pd0t9NEqoBNBzQBplL2A8AfAz_-ZnAOYVt5g' \
-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: 1145
{
"id" : "07ef0432-15f7-40ae-8b30-df2939fa2acd",
"networkId" : "b75ff8e7-a385-4f21-9887-0c6b0b933afb",
"zitiId" : "ziti.id.d2sds9mp",
"name" : "Updated edge router policy name",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ "#topclients" ],
"edgeRouterAttributes" : [ "#westrouters" ],
"exclusiveType" : null,
"ownerIdentityId" : "339e4a74-d6be-42f4-8bee-3807735c4756",
"createdBy" : "339e4a74-d6be-42f4-8bee-3807735c4756",
"createdAt" : "2023-12-04T07:55:17.008895Z",
"updatedAt" : "2023-12-04T07:55:17.198428Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b75ff8e7-a385-4f21-9887-0c6b0b933afb",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/07ef0432-15f7-40ae-8b30-df2939fa2acd"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/96531d1c-c6c2-4775-a697-8cfec7784b11",
"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/7062ea77-4a55-473e-9b11-e76b569cecf3' -i -X DELETE \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI1VlVBTjh6UllNN2JmZnFvMnNON01BIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImU3ZTZiYjhjLTVjM2ItNGVhNi1iMjNiLTc5NjZjMWEwYzcwNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjUxNiwiZXhwIjoxNzAxNjgwMTE2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjI3NTQ4NDkxLWJjNTMtNGM1My04N2IxLTUyODBmYzdiZjc2MVwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjUxNn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.rLSTAibQAPTIoYZv6Qjo1NduNkQPPAAVKwCuSKQjrNKmeW8aIe2CcHOqMEWmMafwklhrEMfYCnxn5N789r2alHbLHHG6igXbfBY5w1iBFNVS8a4mCyv0hOnIDGnd6jCNdZfHkWPFyVXCGocLD2CRZ-sxJtVZ9QsXnXyi992PoBSWIiD4rxVMpu4g43g6xMvndQrJYY4BsIE6X2MRAv6uhk5Btuw--8vVSsGU27jbelFM9DktQOeLbhuEMh8UdY1DaH-1NL5b9UMrQlZeVyj9ur3Ga9pA05cNXZQCkyS0bKSohr0RalB0L_hEHL36nek9EKVRvf2jN4MoGUqPt5RyUg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1175
{
"id" : "7062ea77-4a55-473e-9b11-e76b569cecf3",
"networkId" : "1868dbd2-ec38-4d18-a1dd-301fad8c7586",
"zitiId" : "ziti.id.d2kwta3o",
"name" : "Test edge router policy 1701676516",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"ownerIdentityId" : "f95ca5d4-928a-4d3d-ae83-9cfad2988fd8",
"createdBy" : "f95ca5d4-928a-4d3d-ae83-9cfad2988fd8",
"createdAt" : "2023-12-04T07:55:16.584551Z",
"updatedAt" : "2023-12-04T07:55:16.671324Z",
"deletedBy" : "e7e6bb8c-5c3b-4ea6-b23b-7966c1a0c704",
"deletedAt" : "2023-12-04T07:55:16.671Z",
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1868dbd2-ec38-4d18-a1dd-301fad8c7586",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/7062ea77-4a55-473e-9b11-e76b569cecf3"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/0c7d06c0-0930-4077-94da-19a0b68caafe",
"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]. |
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.eyJqdGkiOiJtQzJkRUtQbHktOGdNUWNERmpHSVRBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjAzMjEyMDBlLTVkNmQtNGQ3YS04NTRmLTYwOGY5OWRlZTgwNSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjQ2MywiZXhwIjoxNzAxNjgwMDYzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImE5M2ZmMTA5LWU1NDItNDY4MC1hYzc2LTU0NGI1OTBjYmMyZFwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjQ2M31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.qCZgV_BU3cFHT6PtvYcZFkZ-ZKZ__8kL4ckueXvenpYLuFTnjQx9ELBbmm96UgRTyu8A1R-irxeMV6NZCHEFMV9SDuIOvgrU9lrmeWfHb5KaQEY-lEavz0-2q7VZgJqQpq5tvxk3zaH80ymzIrf1VGlcGHyjgSKPaVRY9TySBtFYcZKgPVsz4vGF97hAjNgxNaHWnPUkKc__I_gRkvARG7UE-f46AnwVfC7fwDP-HZshXNYNsPFglY849Ve4a4Zw3En6uKdqPs7z1KWbHxdcuRZq1rOcRZahzZb7dISQSJeZt2aeu4D30uhmueGwk-xZaQGfu0ZcabZI5pDJZSAdPg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2417
{
"_embedded" : {
"edgeRouterPolicyList" : [ {
"id" : "0147532a-eef5-481c-a237-81bf25e95990",
"networkId" : "4a7d53e2-5277-427c-bac2-0a2a8cb86faa",
"zitiId" : "b2150aa4-d17b-4d8c-ae02-83de52b30b30",
"name" : "Find Test Edge Router Policy 1",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ "#epAttr2", "#epAttr1" ],
"edgeRouterAttributes" : [ "#erAttr2", "#erAttr1" ],
"exclusiveType" : null,
"ownerIdentityId" : "fbc668d5-fe3e-4aa9-8580-532d1f0d893c",
"createdBy" : "fbc668d5-fe3e-4aa9-8580-532d1f0d893c",
"createdAt" : "2023-12-04T07:54:23.461134Z",
"updatedAt" : "2023-12-04T07:54:23.461134Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4a7d53e2-5277-427c-bac2-0a2a8cb86faa",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/0147532a-eef5-481c-a237-81bf25e95990"
}
}
}, {
"id" : "9967e672-80bb-4f58-99b9-23ead14be087",
"networkId" : "4a7d53e2-5277-427c-bac2-0a2a8cb86faa",
"zitiId" : "c7303f63-02d0-4db6-ba79-cc21da6d2589",
"name" : "Find Test Edge Router Policy 2",
"isSystem" : true,
"semantic" : "AllOf",
"endpointAttributes" : [ "#epAttr1", "#attr3" ],
"edgeRouterAttributes" : [ "#erAttr1" ],
"exclusiveType" : null,
"ownerIdentityId" : "fbc668d5-fe3e-4aa9-8580-532d1f0d893c",
"createdBy" : "fbc668d5-fe3e-4aa9-8580-532d1f0d893c",
"createdAt" : "2023-12-04T07:54:23.478759Z",
"updatedAt" : "2023-12-04T07:54:23.478759Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4a7d53e2-5277-427c-bac2-0a2a8cb86faa",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/9967e672-80bb-4f58-99b9-23ead14be087"
}
}
} ]
},
"_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.eyJqdGkiOiJsa1FIZXlWTjJNc1BSQXV5SXhvUXhRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQ1MmYzNDljLTc0NTMtNDI3ZC1hZDE5LWVlNzg2Mzk1MGVmOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjUxMiwiZXhwIjoxNzAxNjgwMTEyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjk5NDkzNGNjLWNkMDgtNDNkOC05NjcwLTE5Y2RmODJjNDc5N1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjUxMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.CsxWItkMnZLDSOhkagh6ejZPFnAnDLrgEDZX4LQ3nFG1FXla6eo2jwfuhhLRwIZvlpzvryKLhq5kcAXBJ8dWLQwwfLpxRSgXrARO5U5MEnuBf7RnlHXseky4bfxR11En4UUcicduI26PdYKPA65P_baxUyKF8qB2D9ISshjS1PklcB3VezxBjO6w0xHylifgkJ-P6HHouq8wcbfDpIabXY0mQgXQDabNnU-drb3yM0FxBsYFToor7d81GHWQr9iWM7Y3riZ5jjE-uJFF_fQVWd8CMevVO9z9mCmDJidVQ65xi7a2F4ftST2FVIi6kO4WQ-vRv_IcedO9VtnNtpMNAA'
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
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/services/7a5ce4e9-c71e-49dc-a66f-9ba4c110337a' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI4TEtJUEFYLVV2RzNxbTNrQkNlUE9BIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjgyMDUwZjU2LWI3MTYtNDYzNC1hY2M1LTBkY2NhODNiNGU5MyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY1NiwiZXhwIjoxNzAxNjgwMjU2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRjOGNiZTdhLTZkZGQtNDI4ZS1hZjgzLTJiODY2YTgyYzZiZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY1Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.m1iQ7BXCdmYFH5t_dPiITiTlfB8xqi5_u6bZte7MzAkIXTZFSEdcRIM3yC0FZ067JcFfWl_rQdy_BdiIt1N_lXypAxeWYN1Blq8c5RY7R920VaEXz2N9s8ygCQSRy-qHJc7mFd3KfdR0ti_Vur5OHlK0o-dDQtqg7rjrIxtN7DpYId8b-MKO2OvUBNfpEdGEB-RK6hzw7fPTXmxbCY02RRhIrzqcyLTzaIlqi5G_mgxgS0USGIEaRyMUAnZ12WgG_6XkmcZDKIDA0tTFkuIWQMTX5zSIHuK3RY0eXLXTWK4CKpKK6wvjMI_VqjlbnTQugUybt7eoaayUYff_lZ38Iw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1543
{
"id" : "7a5ce4e9-c71e-49dc-a66f-9ba4c110337a",
"networkId" : "45bc067c-367e-40ea-8daf-177d51779060",
"zitiId" : "ziti.id.euosr74y",
"name" : "My Service et2y57yq",
"encryptionRequired" : true,
"attributes" : [ "#Attr-1", "#Attr-2" ],
"modelType" : "TunnelerToEndpoint",
"ownerIdentityId" : "1f0d7ac2-d96a-4014-bfa5-e569a52eff22",
"createdBy" : "1f0d7ac2-d96a-4014-bfa5-e569a52eff22",
"createdAt" : "2023-12-04T07:57:36.115549Z",
"updatedAt" : "2023-12-04T07:57:36.158609Z",
"deletedBy" : null,
"deletedAt" : null,
"configIdByConfigTypeId" : {
"3528dc78-dced-47c4-a32d-329c6fbfe416" : "0165eedb-ce05-4453-af5a-111cce247e6b",
"d7cea269-aa09-4575-9b3e-e0a28dea5de4" : "a28e1510-9e25-4efd-a437-58f3db5424bb"
},
"model" : {
"clientIngress" : {
"host" : "myHost.com",
"port" : 8989
},
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
},
"bindEndpointAttributes" : [ "#east-pop" ],
"edgeRouterAttributes" : [ "#LA-dataCenter-ERs" ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services/7a5ce4e9-c71e-49dc-a66f-9ba4c110337a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/45bc067c-367e-40ea-8daf-177d51779060",
"profile" : "parent"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?id=0165eedb-ce05-4453-af5a-111cce247e6b,a28e1510-9e25-4efd-a437-58f3db5424bb"
}
}
}
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 |
|
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.eyJqdGkiOiJKRzlyc0dRdXpQLTlCY0ZfN3g0QjlBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjFmMGQ3YWMyLWQ5NmEtNDAxNC1iZmE1LWU1NjlhNTJlZmYyMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY1NiwiZXhwIjoxNzAxNjgwMjU2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImU3N2Y1MmRkLTlkMTYtNDZkMC1iZGQ1LTBhNDIyY2M2YjU5MFwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY1Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.rHghleQE3pczGPGCUWROSdFP86jgOlVn0OGjwy7519TaB_4u0NeHCvXV4QzPtug32UANqLQwIN5jaqCvRXNDSPlHas98uQAOu18W1VH0_Yhp9hUwgWV7AKca8Kjc4nBBfaiP1uF7lWWrq34V47U8D4G_pTkNESOqu9LXve_8m9BHSBQUXukkqGWHUBrFTdJeLIrx72lDOWYAqTP2sBWtDalhgfg4fjWIywdwMewDsqsoCOtuvjgNyLicEPz4sHtfeQ82ZHSdO4g3prd-PCIaH-YY9p3117wGS7z8c_rxl-czYsi3lneib8OKfiH-sUOKGHsCW5Dq8bhd2YmWLi4LXg' \
-d '{"networkId":"45bc067c-367e-40ea-8daf-177d51779060","name":"My Service et2y57yq","encryptionRequired":true,"attributes":["#Attr-1","#Attr-2"],"modelType":"TunnelerToEndpoint","model":{"clientIngress":{"host":"myHost.com","port":8989},"serverEgress":{"protocol":"tcp","host":"dmz.io","port":9001},"bindEndpointAttributes":["#east-pop"],"edgeRouterAttributes":["#LA-dataCenter-ERs"]}}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/json
Content-Length: 1049
{
"id" : "7a5ce4e9-c71e-49dc-a66f-9ba4c110337a",
"networkId" : "45bc067c-367e-40ea-8daf-177d51779060",
"zitiId" : "ziti.id.euosr74y",
"name" : "My Service et2y57yq",
"encryptionRequired" : true,
"attributes" : [ "#Attr-1", "#Attr-2" ],
"modelType" : "TunnelerToEndpoint",
"ownerIdentityId" : "1f0d7ac2-d96a-4014-bfa5-e569a52eff22",
"createdBy" : "1f0d7ac2-d96a-4014-bfa5-e569a52eff22",
"createdAt" : "2023-12-04T07:57:36.115549Z",
"updatedAt" : "2023-12-04T07:57:36.158609Z",
"deletedBy" : null,
"deletedAt" : null,
"configIdByConfigTypeId" : {
"3528dc78-dced-47c4-a32d-329c6fbfe416" : "0165eedb-ce05-4453-af5a-111cce247e6b",
"d7cea269-aa09-4575-9b3e-e0a28dea5de4" : "a28e1510-9e25-4efd-a437-58f3db5424bb"
},
"model" : {
"clientIngress" : {
"host" : "myHost.com",
"port" : 8989
},
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
},
"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 |
|
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
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/services/7a5ce4e9-c71e-49dc-a66f-9ba4c110337a' -i -X PATCH \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJVSEtUY3E0TEk3NHY0WklnT09iV2h3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijc4YzhhYzgyLWJiOTMtNDQ2ZC1hN2ViLWJjZjdkN2ZlYjBjOSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY1OSwiZXhwIjoxNzAxNjgwMjU5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImZhMmMwOGIwLTk3MWMtNDdlNC1hNWIwLTRhYmZhYjgzZTYwN1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY1OX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.BXA0-6UY2gml2xbBJy3kpiE6xcnK_Bu-9PyIcRFacRfDdhOzDesoaazM4ori7ZZQM_7Cf6UZureVqnf-ATfXJSXWjI3cP_QRgrADMQVdFhKjHmusHwfq5NZsHMa4Nt1p2IP_nkxWvocgvXSsTDjEY5xkRv1KsyI90k7RIpApGO7fa18lqLnCOPZzE0jkWLEUld5TLI4wqVyJoMeAMdlZe1L3QPU-RryiyiLRpStD5lD0r7gNrk8r4deal9G71vuqhH3fKWf4kkDqYF2bts_gv1Xi33BN8r5Z3LVZ-myHs9OKvquKjhe5_RRrouXe-qk8OwrQERQk5PPEKMOS6CfTHw' \
-d '{"name":"Our Service et2y57yq","attributes":["#Attr-4","#Attr-2"],"modelType":"TunnelerToEndpoint","model":{"clientIngress":{"host":"myHost.com","port":8989},"serverEgress":{"protocol":"tcp","host":"dmz.io","port":9001},"bindEndpointAttributes":["#east-pop"],"edgeRouterAttributes":["#LA-dataCenter-ERs"]}}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 1544
{
"id" : "7a5ce4e9-c71e-49dc-a66f-9ba4c110337a",
"networkId" : "45bc067c-367e-40ea-8daf-177d51779060",
"zitiId" : "ziti.id.euosr74y",
"name" : "Our Service et2y57yq",
"encryptionRequired" : true,
"attributes" : [ "#Attr-4", "#Attr-2" ],
"modelType" : "TunnelerToEndpoint",
"ownerIdentityId" : "1f0d7ac2-d96a-4014-bfa5-e569a52eff22",
"createdBy" : "1f0d7ac2-d96a-4014-bfa5-e569a52eff22",
"createdAt" : "2023-12-04T07:57:36.115549Z",
"updatedAt" : "2023-12-04T07:57:39.785875Z",
"deletedBy" : null,
"deletedAt" : null,
"configIdByConfigTypeId" : {
"3528dc78-dced-47c4-a32d-329c6fbfe416" : "635f6168-9a6e-4f16-831a-5023aa34f802",
"d7cea269-aa09-4575-9b3e-e0a28dea5de4" : "674cc31f-e4bf-416e-91d6-772fc3fbfc1a"
},
"model" : {
"clientIngress" : {
"host" : "myHost.com",
"port" : 8989
},
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
},
"bindEndpointAttributes" : [ "#east-pop" ],
"edgeRouterAttributes" : [ "#LA-dataCenter-ERs" ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services/7a5ce4e9-c71e-49dc-a66f-9ba4c110337a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/45bc067c-367e-40ea-8daf-177d51779060",
"profile" : "parent"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?id=635f6168-9a6e-4f16-831a-5023aa34f802,674cc31f-e4bf-416e-91d6-772fc3fbfc1a"
}
}
}
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
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/services/7a5ce4e9-c71e-49dc-a66f-9ba4c110337a' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJlTjR2S3A4WVpfT0F4Wm40S2dYQzNRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImVlMzBkZTZjLTNlODQtNDQ1NS05OGVjLTFkNzQ0MWZiZWU3MCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY2MSwiZXhwIjoxNzAxNjgwMjYxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjkwMTNhOWE0LTlmZDgtNGFkNC1iMDc0LTIwOGVmNjM3ZDExM1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY2MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.VpdJQqgwwInuZBUARvg4193FBK-8Ube6l6osb5JQev2YeUsWaqbBvzSENH3Mue00CrrGe0eLfazSRGCMPih6WLQqkdoQJiAiSxFcCNtYWdYHjUoihPIqbTRvJF87mWewTOTpy1HmP_wwdz6RjVAIFydlkMJTz7x3XtMgRHI3i7WQjDpniRjT0ZwA_UfF0pU8zIba-8Kh_KC6V2qSZADAn3D0HH6KUUs-mOtP3eYSkw-Y9RZaaZOTr-uDaqe4UI9i_lEWZ1bhXEbqsGpZPMuTjsr5Lat8Vo4lkKY2D4cDumxmOwqlrl0cqKltK3XTyiWaQkPj_cTifgwwibe2bSvn-w'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 1532
{
"id" : "7a5ce4e9-c71e-49dc-a66f-9ba4c110337a",
"networkId" : "45bc067c-367e-40ea-8daf-177d51779060",
"zitiId" : null,
"name" : "Our Service et2y57yq",
"encryptionRequired" : true,
"attributes" : [ ],
"modelType" : "TunnelerToEndpoint",
"ownerIdentityId" : "1f0d7ac2-d96a-4014-bfa5-e569a52eff22",
"createdBy" : "1f0d7ac2-d96a-4014-bfa5-e569a52eff22",
"createdAt" : "2023-12-04T07:57:36.115549Z",
"updatedAt" : "2023-12-04T07:57:41.171685Z",
"deletedBy" : "ee30de6c-3e84-4455-98ec-1d7441fbee70",
"deletedAt" : "2023-12-04T07:57:41.161Z",
"configIdByConfigTypeId" : {
"3528dc78-dced-47c4-a32d-329c6fbfe416" : "635f6168-9a6e-4f16-831a-5023aa34f802",
"d7cea269-aa09-4575-9b3e-e0a28dea5de4" : "674cc31f-e4bf-416e-91d6-772fc3fbfc1a"
},
"model" : {
"clientIngress" : {
"host" : "myHost.com",
"port" : 8989
},
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
},
"bindEndpointAttributes" : [ ],
"edgeRouterAttributes" : [ ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services/7a5ce4e9-c71e-49dc-a66f-9ba4c110337a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/45bc067c-367e-40ea-8daf-177d51779060",
"profile" : "parent"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?id=635f6168-9a6e-4f16-831a-5023aa34f802,674cc31f-e4bf-416e-91d6-772fc3fbfc1a"
}
}
}
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 |
|
interceptConflicts |
Array[Object] |
true |
|
interceptConflicts[].fromServiceId |
String |
true |
|
interceptConflicts[].fromServiceName |
String |
true |
|
interceptConflicts[].toServiceId |
String |
true |
|
interceptConflicts[].toServiceName |
String |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans' -i -X GET \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI4UEp1ejRVd2xUek1IYndxLVpockhnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQ2YWZlOTA2LTcxNTItNDQ1Ny1hMWMxLTU2ZGJiNmYzMzZmMCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIzMCwiZXhwIjoxNzAxNjc5ODMwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjA0MWM4MTgxLTdmNDUtNGQwMC1iOTRiLTc4MGZlN2ViNzBkZlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIzMH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.kd8G2z_ol3KL16VwUD-VdfY_OdqskLJYTyUS8viRmGIKo2GECoNmOX33fgNlHYfNJZfjljsP1tBqsCEFE8a_SPV9qEMq4P99EwN7IYQZAAHE4zFchuhYRyBR2IH3CCEa6wrVrcZDN6AELym1YRtqdinX-bsucrE93lx9qLmHtV9ISk_OZMBNvg-DIKfdDQf6f9QBLm4q5ikePB2THehLXwwHSdwBXwtnlH_2Vuo5533TgBxPVZQoF43SKwMlKhRXPC0cVjFOcZtn5CXpdlQzw5w_0ev7LAyWSXUf7gBtVkm0X4YJ26Nwp3TxbRk-nImqZ1Z8RTCvDC8KcKctMnKZxw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 6282
{
"_embedded" : {
"appWanList" : [ {
"id" : "386a0e78-2631-4645-b641-d5d0e4717eed",
"ownerIdentityId" : "08790cc5-5b4f-475d-9031-d95d546308bf",
"createdBy" : "08790cc5-5b4f-475d-9031-d95d546308bf",
"createdAt" : "2023-12-04T07:50:14.967738Z",
"updatedAt" : "2023-12-04T07:50:15.109517Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-5",
"zitiId" : "2488f1b4-375e-4330-98ad-c6c4aed65fe4",
"networkId" : "9af53989-23e4-4ea6-ae8a-053e592af376",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/386a0e78-2631-4645-b641-d5d0e4717eed"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9af53989-23e4-4ea6-ae8a-053e592af376",
"profile" : "parent"
}
}
}, {
"id" : "3af83f8f-ebb2-4e27-ab5d-918eda5c0ebe",
"ownerIdentityId" : "d8996dfc-c0ec-4276-ae01-34a909c65631",
"createdBy" : "d8996dfc-c0ec-4276-ae01-34a909c65631",
"createdAt" : "2023-12-04T07:50:28.790183Z",
"updatedAt" : "2023-12-04T07:50:29.243441Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-50",
"zitiId" : "bf7554dd-baae-4433-9b5b-5e111ca3678d",
"networkId" : "b89c23c8-3ae3-4dab-846a-5ed8967c7345",
"serviceAttributes" : [ "#service03", "#service02", "#service01" ],
"endpointAttributes" : [ "#usendpoints" ],
"postureCheckAttributes" : [ "#windows" ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/3af83f8f-ebb2-4e27-ab5d-918eda5c0ebe"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b89c23c8-3ae3-4dab-846a-5ed8967c7345",
"profile" : "parent"
}
}
}, {
"id" : "5a93d3e4-3e64-4a17-9177-2b81c891e681",
"ownerIdentityId" : "fd96f29a-fb00-4c32-be3e-d25a026cae69",
"createdBy" : "fd96f29a-fb00-4c32-be3e-d25a026cae69",
"createdAt" : "2023-12-04T07:50:25.380526Z",
"updatedAt" : "2023-12-04T07:50:25.410418Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-23",
"zitiId" : "d2c04b6e-363c-45cd-bfe9-8b856d228d66",
"networkId" : "82358bfa-2926-4450-af8c-973944b91702",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/5a93d3e4-3e64-4a17-9177-2b81c891e681"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/82358bfa-2926-4450-af8c-973944b91702",
"profile" : "parent"
}
}
}, {
"id" : "83443a01-fb27-416b-81a3-f25d0dc61220",
"ownerIdentityId" : "e9c2c9f8-1583-4c29-befc-3d413a44828b",
"createdBy" : "e9c2c9f8-1583-4c29-befc-3d413a44828b",
"createdAt" : "2023-12-04T07:50:25.981247Z",
"updatedAt" : "2023-12-04T07:50:26.002504Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-32",
"zitiId" : "4b62bcaf-7738-4c94-9bb5-55b25508b202",
"networkId" : "42440dae-82cf-4aaa-bc3f-c082fe88117f",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/83443a01-fb27-416b-81a3-f25d0dc61220"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/42440dae-82cf-4aaa-bc3f-c082fe88117f",
"profile" : "parent"
}
}
}, {
"id" : "a5bf243c-9386-492e-b6ee-e7c21d022789",
"ownerIdentityId" : "d2989ec2-7fef-4dd5-95be-3efd6b183367",
"createdBy" : "d2989ec2-7fef-4dd5-95be-3efd6b183367",
"createdAt" : "2023-12-04T07:50:26.629624Z",
"updatedAt" : "2023-12-04T07:50:28.132912Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Updated App Wan name",
"zitiId" : "86e4e9bb-99f2-443d-95de-40691a80840b",
"networkId" : "6be21f4e-c11f-4484-9d8f-ad84f556ff3a",
"serviceAttributes" : [ "#service03", "#service02", "#service01" ],
"endpointAttributes" : [ "#usendpoints" ],
"postureCheckAttributes" : [ "#windows" ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/a5bf243c-9386-492e-b6ee-e7c21d022789"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6be21f4e-c11f-4484-9d8f-ad84f556ff3a",
"profile" : "parent"
}
}
}, {
"id" : "ea4f68b7-8cb7-4784-95fd-e8751c8e9ac4",
"ownerIdentityId" : "4dfc15f4-5e2f-4bf6-a030-82bc653fab15",
"createdBy" : "4dfc15f4-5e2f-4bf6-a030-82bc653fab15",
"createdAt" : "2023-12-04T07:50:29.963041Z",
"updatedAt" : "2023-12-04T07:50:30.008022Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-59",
"zitiId" : "c831cb32-397e-469a-bded-49a30a85f6dd",
"networkId" : "f383a100-ebc6-4597-b29c-c14cbc5944b3",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/ea4f68b7-8cb7-4784-95fd-e8751c8e9ac4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f383a100-ebc6-4597-b29c-c14cbc5944b3",
"profile" : "parent"
}
}
} ]
},
"_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/e457edc5-f75a-40f0-a9f9-f09522979a5a' -i -X GET \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJlcjBzOWlORms0aEtRa2taOG5jdXRRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjAzYjRjNWVhLTI3YWUtNGQ1Yi05MTIxLTlkZjgwYWUxMzU2MCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIzMSwiZXhwIjoxNzAxNjc5ODMxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjhlYmFjNGRiLTQ3MDEtNDMyNC05NDhhLTkyYzVlYzBhZWI5NVwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIzMX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.OV2yBBwCrg8g5FH8QDrHDdE_FMXum2O0D2RfH6uFcDzeolT4AGYZqAM22ggKHeBQKG62D9QOUhxdvlljxqPpEzpfZjtuOpBidd73V7dCdyKvwQ3eFzxSkuJFVNCFCRsMJQZ-j2goGwMy0VlyneTLXAOWb6XpbQaZjr-MBo0ZS1kj8qnGS4BJXV3t-1COnUuKhFp19TV0gLHKqiHwhOvs21gtHVA_FxrZ5lLO35TMmOMcjvA_v8Mh8FjJAjDeK4wkacI_97TLmvdNmg-QTXNBPeyDUJjxYSQGo1EiVT4eykrtEw0yrT1qGvR0w9Cox-u_VrwGCL0DSKOGToli7p1H8Q'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 881
{
"id" : "e457edc5-f75a-40f0-a9f9-f09522979a5a",
"ownerIdentityId" : "31d65e66-9b48-4e85-aa87-4d289efbcf7a",
"createdBy" : "31d65e66-9b48-4e85-aa87-4d289efbcf7a",
"createdAt" : "2023-12-04T07:50:31.138754Z",
"updatedAt" : "2023-12-04T07:50:31.163906Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-68",
"zitiId" : "46039c9e-e736-49e7-abc2-070bedc4b077",
"networkId" : "416bad69-bfc2-44b9-b76f-173c2f78b5c3",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/e457edc5-f75a-40f0-a9f9-f09522979a5a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/416bad69-bfc2-44b9-b76f-173c2f78b5c3",
"profile" : "parent"
}
}
}
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 |
|
interceptConflicts |
Array[Object] |
true |
|
interceptConflicts[].fromServiceId |
String |
true |
|
interceptConflicts[].fromServiceName |
String |
true |
|
interceptConflicts[].toServiceId |
String |
true |
|
interceptConflicts[].toServiceName |
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.eyJqdGkiOiJGTXpONlhSWGlQd2ZoMzV1Nlk1YndRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjU5NGRkZmMzLTg1YjEtNDU5Yy04NmM1LTdiMzJlMzlkMDdiNSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIwOSwiZXhwIjoxNzAxNjc5ODA5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImI2NzA3YzExLTU2OTYtNDg5Yi1hOGYzLTkwNDFmNWNmMjJiMFwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIwOX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.cInlpL68GY-lgrlb71i7uldnfUbEiTVqFrCpbNs503tWdyvItmyQHZ_788VcnqKU8rUS5awKnFVe_0gjQB-X2HJXf00fg-B5RU8MXMAeG1_G-md4P08BecQAbHG4yvveF15WSH8kIXohZMjk2hXoqF9BwgXBHEjZACh2zF_Mkm8S1dUkaF61eaS-kM448WJIL9jJSsqsxOAy0_wCEL9uoy5co0PstCKQnV7E7db8EeiaHRzkPyEMDxvyOFQqSCWlpLoGUyj5A6WxSc4Z9QvI4jsD7nBwg1Ln4x0MlolvKwQrLJohhQR3jQ0PJDWOr8PeKqgpM0O4oyNqVHsfiy3uxg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2320
{
"_embedded" : {
"appWanList" : [ {
"id" : "2b5383a6-0db2-4801-a61a-e29a85ee9eae",
"ownerIdentityId" : "889df362-2c86-4fc4-8dd9-43ca71c671c2",
"createdBy" : "889df362-2c86-4fc4-8dd9-43ca71c671c2",
"createdAt" : "2023-12-04T07:50:08.902757Z",
"updatedAt" : "2023-12-04T07:50:08.998520Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Find Test AppWan 2",
"zitiId" : "df810345-2344-44cd-bbc5-ee2399735718",
"networkId" : "33574a6d-1415-4aaa-a5c3-c7f6170c3ad0",
"serviceAttributes" : [ "#seAttr1", "#seAttr3" ],
"endpointAttributes" : [ "#epAttr1" ],
"postureCheckAttributes" : [ ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/2b5383a6-0db2-4801-a61a-e29a85ee9eae"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/33574a6d-1415-4aaa-a5c3-c7f6170c3ad0",
"profile" : "parent"
}
}
}, {
"id" : "b6b3f8aa-c951-413d-82e8-14270bbedc5b",
"ownerIdentityId" : "889df362-2c86-4fc4-8dd9-43ca71c671c2",
"createdBy" : "889df362-2c86-4fc4-8dd9-43ca71c671c2",
"createdAt" : "2023-12-04T07:50:08.648184Z",
"updatedAt" : "2023-12-04T07:50:08.859808Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Find Test AppWan 1",
"zitiId" : "f60843b2-5521-4809-b1af-4b8df1c636eb",
"networkId" : "33574a6d-1415-4aaa-a5c3-c7f6170c3ad0",
"serviceAttributes" : [ "#seAttr1", "#seAttr2" ],
"endpointAttributes" : [ "#epAttr2", "#epAttr1" ],
"postureCheckAttributes" : [ ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/b6b3f8aa-c951-413d-82e8-14270bbedc5b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/33574a6d-1415-4aaa-a5c3-c7f6170c3ad0",
"profile" : "parent"
}
}
} ]
},
"_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.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
networkId |
String |
true |
|
name |
String |
true |
|
serviceAttributes |
Array[String] |
true |
|
endpointAttributes |
Array[String] |
true |
|
postureCheckAttributes |
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/app-wans' -i -X POST \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI0bWhOQTBPMDNlRTRHbFZRblRYc1JBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjdkM2YxMDg2LTcwZTAtNGM2Mi1iM2I3LWMxMDQzYThmOWZkZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIzNCwiZXhwIjoxNzAxNjc5ODM0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImY5ZTg1Y2M5LTMxNTctNDZjMy05OGEwLTc0MzQ3NjQ4OTViMlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIzNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.gKeJb5biJHB7QtvWWandS8vtAvBLGoO_h-uT-nozDpbNxum9GWAvQdBTl1Uc-msGo1F4eI4Y6NLusKDIE94l2fE5ZPwaXaVPR-inYmR9erKNviDwF8yNjvXhhvORTSIwh_24sUo-r6pO0yO6Bi5lpbRQsHoydWLaZ3gbahP3ABvbd8OvdEbhu-tfvBN0OAYjzljFqxqZUdAHwI7xObqzGa0O-hnuFCxM1_hMLJDkGIXChPnzPJBqf1TdjPai4kiKr-RwnFYtM6owhNz7FUAVsZwyff_u3YdmF4Bk74oPmMqxsjWZjPsM96Yc7mTLICpEMHUPILm1mhw0hH-xT223KQ' \
-d '{"networkId":"f250f245-a820-49f6-b289-5150ee495bc2","name":"Test App Wan 1701676234","serviceAttributes":["#service01"],"endpointAttributes":["@endpoint-97","#accessclients"],"postureCheckAttributes":["#windows"]}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1152
{
"id" : "ed238917-ec8b-434a-951e-81bf19ea2bb6",
"ownerIdentityId" : "7d3f1086-70e0-4c62-b3b7-c1043a8f9fdf",
"createdBy" : "7d3f1086-70e0-4c62-b3b7-c1043a8f9fdf",
"createdAt" : "2023-12-04T07:50:34.471585Z",
"updatedAt" : "2023-12-04T07:50:34.572125Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Test App Wan 1701676234",
"zitiId" : "460dbff9-c797-457d-b187-dd1bd29133ae",
"networkId" : "f250f245-a820-49f6-b289-5150ee495bc2",
"serviceAttributes" : [ "#service01" ],
"endpointAttributes" : [ "@endpoint-97", "#accessclients" ],
"postureCheckAttributes" : [ "#windows" ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/ed238917-ec8b-434a-951e-81bf19ea2bb6"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f250f245-a820-49f6-b289-5150ee495bc2",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/715a952b-6125-4453-83b4-78ce93110187",
"title" : "Create AppWan",
"profile" : "meta"
}
}
}
Update App Wan
PUT /v2/app-wans/{id}
Authorization
This endpoint requires update
action on the app-wan
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
serviceAttributes |
Array[String] |
true |
|
endpointAttributes |
Array[String] |
true |
|
postureCheckAttributes |
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/app-wans/a5bf243c-9386-492e-b6ee-e7c21d022789' -i -X PUT \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJpb1g1QmJMYzZ6Y3pNSm0xZ0U4VHBBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijg1NDhhNWZhLTFkMzEtNDAyNC1hODc2LWIyZTc4NzAxZTJiYyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIyNiwiZXhwIjoxNzAxNjc5ODI2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjRiZjk3MGJjLTUzMmMtNDg1Ny04MjhjLTRhMzdhZmIwOTMyYlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIyNn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.HCrz7jUoBhRidBCFmz_TCj74bGXc1ft3fBmV65lLzcfK_gqEzdFv2jbppFaWARO9gsmhFKybMa9T7o8uyRo5kP4PZECfvC2ZdGHDzLZQhTvOknmX8bhREey5MfspdOzOVm85bS4omH7fzYPsZaxIq0vdNBbQoVAtdbbiqYJExovvAT1QJ_-GhYl5N_-oubNZFHnxtLHvT-jCCAJ83QyZ7juq-uKJZNeFFvXZwhZZ7e5qdNIr4nB8GesM4E0ODiCUW42kc935NviGZCCnm9l6lYXpKsCXzyZDwEzHpNDg4JewnfoRJpOsjlQaJWtdipScSkRidqh-J5NMjevirhvqng' \
-d '{"name":"Updated App Wan name","serviceAttributes":["#service03","#service02","#service01"],"endpointAttributes":["#usendpoints"],"postureCheckAttributes":["#windows"]}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1159
{
"id" : "a5bf243c-9386-492e-b6ee-e7c21d022789",
"ownerIdentityId" : "d2989ec2-7fef-4dd5-95be-3efd6b183367",
"createdBy" : "d2989ec2-7fef-4dd5-95be-3efd6b183367",
"createdAt" : "2023-12-04T07:50:26.629624Z",
"updatedAt" : "2023-12-04T07:50:28.132912Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Updated App Wan name",
"zitiId" : "86e4e9bb-99f2-443d-95de-40691a80840b",
"networkId" : "6be21f4e-c11f-4484-9d8f-ad84f556ff3a",
"serviceAttributes" : [ "#service03", "#service02", "#service01" ],
"endpointAttributes" : [ "#usendpoints" ],
"postureCheckAttributes" : [ "#windows" ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/a5bf243c-9386-492e-b6ee-e7c21d022789"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6be21f4e-c11f-4484-9d8f-ad84f556ff3a",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/57633d3c-2f6c-435b-9590-9c6567e800e7",
"title" : "Update AppWan",
"profile" : "meta"
}
}
}
Delete App Wan
DELETE /v2/app-wans/{id}
Authorization
This endpoint requires delete
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/021bd00b-a520-440d-9673-6acdbc89fef5' -i -X DELETE \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI2bE1XWElOSW9XbmVnOE1RRHlYUjZnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijk4M2RlOGMxLTViNjYtNGEzYy05YmI2LWNmNzc5YWM2ZGEzMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjIyMywiZXhwIjoxNzAxNjc5ODIzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImUxNDc3M2JkLTQ1MzAtNDA3Ni1hYjkzLWViYWU3MGY3ZjVlOVwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjIyM31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Y4AxobODpc8TETSX3MDfaBfnWekGFgzbtUHJmIynXYQ1Il4_O5dYFyiEfwsPH_vtAEupjVhFQt3dCa1eutL4JC-4llzZKvwufguJfZyeNlwcGA21Vc1s4pwndskxMrRttJQdeJBhXLK0Xgtv4vG7TPS9PJzdi7aFIUyb3yCQgngUU1hx534guF8jxAJc2utaCWGj8UCo6F7zLONC9b_MfI6KdNOATMFquJ-BMO_sx0WHXsqtoYJv1RpBvgGzDwZ7CvagMioAJC3x2PU98KnHqmmgQVMFshn4VWJA2H4Fw_I73Db_q9fcg3ChWG-4zNJJ6CR1sSrNMrP6fWCNKdfgiQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1103
{
"id" : "021bd00b-a520-440d-9673-6acdbc89fef5",
"ownerIdentityId" : "d393144a-23a6-4289-b98e-e3e2370f81a0",
"createdBy" : "d393144a-23a6-4289-b98e-e3e2370f81a0",
"createdAt" : "2023-12-04T07:50:23.167999Z",
"updatedAt" : "2023-12-04T07:50:23.948792Z",
"deletedBy" : "983de8c1-5b66-4a3c-9bb6-cf779ac6da32",
"deletedAt" : "2023-12-04T07:50:23.592Z",
"name" : "appwan-14",
"zitiId" : null,
"networkId" : "a04e08df-7522-4cd5-8941-c16ee9806017",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"interceptConflicts" : [ ],
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/021bd00b-a520-440d-9673-6acdbc89fef5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a04e08df-7522-4cd5-8941-c16ee9806017",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/8981806d-eece-4f93-8eda-3f038526ad0f",
"title" : "Delete AppWan",
"profile" : "meta"
}
}
}
Posture Checks
Find Posture Checks
GET /v2/posture-checks
Authorization
This endpoint requires read
action on the posture-check
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
deleted |
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 |
|
zitiId |
String |
true |
|
name |
String |
true |
|
networkId |
String |
true |
|
type |
String |
true |
Must be one of [OS, PROCESS, DOMAIN, MAC, MFA, PROCESS_MULTI]. |
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
attributes |
Array[String] |
true |
|
data |
Object |
true |
|
data.domains |
Array[String] |
true |
|
data.macAddresses |
Array[String] |
true |
|
data.timeoutSeconds |
Integer |
true |
|
data.promptOnWake |
Boolean |
true |
|
data.promptOnUnlock |
Boolean |
true |
|
data.ignoreLegacyEndpoints |
Boolean |
true |
|
data.operatingSystems |
Array[Object] |
true |
|
data.operatingSystems[].type |
String |
true |
Must be one of [Windows, Android, iOS, Linux, macOS, WindowsServer]. |
data.operatingSystems[].versions |
Array[String] |
true |
|
data.process |
Object |
true |
|
data.process.osType |
String |
true |
Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS]. |
data.process.path |
String |
true |
|
data.process.hashes |
Array[String] |
true |
|
data.process.signerFingerprint |
String |
true |
|
data.processes |
Array[Object] |
true |
|
data.processes[].osType |
String |
true |
Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS]. |
data.processes[].path |
String |
true |
|
data.processes[].hashes |
Array[String] |
true |
|
data.processes[].signerFingerprints |
Array[String] |
true |
|
data.semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/posture-checks' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJVMkRJQTVRQ3BJSG85a0NpSTBPRWd3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImMyNjc5NWMyLWZiZDAtNDk4NS04OGEzLWRmYzFjYzlkNDc0OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjUwNSwiZXhwIjoxNzAxNjgwMTA1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImRhODM3MTYwLWJhMWItNGZmZC1iZTU5LWZkMDg0NjJhZjE0MlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjUwNX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.LGVe7sbwt4Y3zZd0CUesPsqJY2GbBVh4zQlJRlDxwnk5fhzF5olbpkuJGqLkecFUvMX8l-vPZdgftygA6y7YnPSYkbV00CNfS4uGBIo929h7CLoNCuePzHU_Zk1Vq5HjYAcX_342gjgers_OWFwW35C9sEirr_qxITZ_psAWmQ-fGOO4DKHYaFSAGx0Gdy48q0SgrWK-cN8JRIYrL_78I6op0cMorWXvP8_F4gSCpNlTJaSZ5FtrWpemmV3f5Dsk-0ayvV4HuMBsP4sQ14BtNL4nDA_kd0-fmM4lHOuuOjYRbka7G37b24ixtrKkl9LAmK93Rmw6hvQ4DtmPveWMhA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2284
{
"_embedded" : {
"postureCheckList" : [ {
"id" : "260efff5-9097-4d45-b657-a44816d51578",
"zitiId" : "zitiId-fake-abe3b516-a556-48b4-9a2c-f31e562f16b2",
"name" : "Find Test Posture Check 1",
"networkId" : "73ab8763-3910-4587-841d-de86210f8c60",
"type" : "DOMAIN",
"ownerIdentityId" : "504f87be-a51f-428e-8968-9faeeceec4a2",
"createdBy" : "504f87be-a51f-428e-8968-9faeeceec4a2",
"createdAt" : "2023-12-04T07:55:05.519911Z",
"updatedAt" : "2023-12-04T07:55:05.519911Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#attr2", "#attr1" ],
"data" : {
"domains" : [ "abc.com" ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/260efff5-9097-4d45-b657-a44816d51578"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/73ab8763-3910-4587-841d-de86210f8c60",
"profile" : "parent"
}
}
}, {
"id" : "2c5ddbc6-e13d-4710-a893-ed9a6a39bc4d",
"zitiId" : "zitiId-fake-7e423f62-a759-41d3-8a3b-8dfc07bf6996",
"name" : "Find Test Posture Check 2",
"networkId" : "73ab8763-3910-4587-841d-de86210f8c60",
"type" : "DOMAIN",
"ownerIdentityId" : "504f87be-a51f-428e-8968-9faeeceec4a2",
"createdBy" : "504f87be-a51f-428e-8968-9faeeceec4a2",
"createdAt" : "2023-12-04T07:55:05.532757Z",
"updatedAt" : "2023-12-04T07:55:05.532757Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#attr3", "#attr1" ],
"data" : {
"domains" : [ "abc.com" ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/2c5ddbc6-e13d-4710-a893-ed9a6a39bc4d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/73ab8763-3910-4587-841d-de86210f8c60",
"profile" : "parent"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks"
}
},
"page" : {
"size" : 3500,
"totalElements" : 2,
"totalPages" : 1,
"number" : 0
}
}
Get Posture Check
GET /v2/posture-checks/{id}
Authorization
This endpoint requires read
action on the posture-check
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/posture-checks/b2a8d3d8-477b-4874-9bff-534a0f84d581' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJrcGpjMUpOT0NLT09xUzAyUWxKdG9RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImJhOTdlODhjLWYzZjMtNDA0MC1iMTU3LWEwOTQyZjUwNzNlZiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY1MCwiZXhwIjoxNzAxNjgwMjUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjczNzI4ODFlLThlYjQtNDljNC04ZmI4LTM4MmU4YjZmMGFhOFwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.qCvu6bckDbF_xNpwB_75SOIwseQMdMe95QnzWKpHdrL0613_cbPwQbJEVW6Bek4Y0G68_cSRY4CLjgOGuA93-DoAg2STwUqbffrT5DDtkc6mh7GkjgAnBtODNbtB3zW9wb1-5I227julKTBh0ZWBnNAyvSOqo41eZEnwIvYBRWGg0RHBXPIrs4AkDMAWcbRKIqzJ4qdJZ4yeAiG8jwYXbOv4uFFuXdmok9qYf4P0xFwyK7nA-KhDqeGouiM26BBzoOsZpPkKfnREoGkzrD_HfCAI0guwr1VFL9zL5whoAiF1o-Dx35oK_6n7TnNSCucGWAxq5VN65_HjnYICvo7LXA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 966
{
"id" : "b2a8d3d8-477b-4874-9bff-534a0f84d581",
"zitiId" : "ziti.id.erxg0pzz",
"name" : "My Posture Check 1156850925638",
"networkId" : "0dc6be59-5280-4785-aae4-789286e990c7",
"type" : "MFA",
"ownerIdentityId" : "8f863727-2797-4534-96ac-34e9c1a1ed48",
"createdBy" : "8f863727-2797-4534-96ac-34e9c1a1ed48",
"createdAt" : "2023-12-04T07:57:30.151096Z",
"updatedAt" : "2023-12-04T07:57:30.151096Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#Attr-1", "#Attr-2" ],
"data" : {
"timeoutSeconds" : 1234,
"promptOnWake" : true,
"promptOnUnlock" : false,
"ignoreLegacyEndpoints" : false
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/b2a8d3d8-477b-4874-9bff-534a0f84d581"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0dc6be59-5280-4785-aae4-789286e990c7",
"profile" : "parent"
}
}
}
Create Posture Check
POST /v2/posture-checks
Authorization
This endpoint requires create
action on the posture-check
resource type.
Path parameters
No parameters.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
networkId |
String |
true |
|
type |
String |
true |
Must be one of [OS, PROCESS, DOMAIN, MAC, MFA, PROCESS_MULTI]. |
attributes |
Array[String] |
true |
|
data |
Object |
true |
|
data.domains |
Array[String] |
true |
|
data.macAddresses |
Array[String] |
true |
|
data.timeoutSeconds |
Integer |
true |
|
data.promptOnWake |
Boolean |
true |
|
data.promptOnUnlock |
Boolean |
true |
|
data.ignoreLegacyEndpoints |
Boolean |
true |
|
data.operatingSystems |
Array[Object] |
true |
|
data.operatingSystems[].type |
String |
true |
Must be one of [Windows, Android, iOS, Linux, macOS, WindowsServer]. |
data.operatingSystems[].versions |
Array[String] |
true |
|
data.process |
Object |
true |
|
data.process.osType |
String |
true |
Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS]. |
data.process.path |
String |
true |
|
data.process.hashes |
Array[String] |
true |
|
data.process.signerFingerprint |
String |
true |
|
data.processes |
Array[Object] |
true |
|
data.processes[].osType |
String |
true |
Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS]. |
data.processes[].path |
String |
true |
|
data.processes[].hashes |
Array[String] |
true |
|
data.processes[].signerFingerprints |
Array[String] |
true |
|
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
No links.
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/posture-checks' -i -X POST \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJsZXEwYVVrQXN6czV5Ri15dXJpb1F3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhmODYzNzI3LTI3OTctNDUzNC05NmFjLTM0ZTljMWExZWQ0OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY1MCwiZXhwIjoxNzAxNjgwMjUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNiMDE2MTdiLWJhNmItNDVmYi05MDRlLTVjYWQwZDVkY2RiMlwiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.YXUEqQc8FBTBniDXQ4e2OGMWkNuFPXlm6u_cXekl2PMdEr_TSwVvDN6dArWVitmbk8gh2KJ3uGfT-ip3FtFlwovDKR4VSw1-YgRqaoN4IR42czy7cuX0LFdu3ufWQhN1RE914H8NZ95z6plvFlO-Rkz3sQwe0UFohOw7xDutHkrIX1E7J6CZt0l9f0BtaCRAJlonrmjXMvhaoDheBtbGpHo9MW7xqQZfBN7eE8YDhu5Cq33waIZxX6cogGrBkMoVXiU3rr0dvhcg3mFk3HAu8D6FJYQWDHW-7snxYCOsmSS6WcMdaITooSUvMutIjJhFtBVsxQ5s6hQhvMeCCnhhKw' \
-d '{"name":"My Posture Check 1156850925638","networkId":"0dc6be59-5280-4785-aae4-789286e990c7","type":"MFA","attributes":["#Attr-1","#Attr-2"],"data":{"timeoutSeconds":1234,"promptOnWake":true,"promptOnUnlock":false,"ignoreLegacyEndpoints":false}}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 642
{
"id" : "b2a8d3d8-477b-4874-9bff-534a0f84d581",
"zitiId" : "ziti.id.erxg0pzz",
"name" : "My Posture Check 1156850925638",
"networkId" : "0dc6be59-5280-4785-aae4-789286e990c7",
"type" : "MFA",
"ownerIdentityId" : "8f863727-2797-4534-96ac-34e9c1a1ed48",
"createdBy" : "8f863727-2797-4534-96ac-34e9c1a1ed48",
"createdAt" : "2023-12-04T07:57:30.151096Z",
"updatedAt" : "2023-12-04T07:57:30.151096Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#Attr-1", "#Attr-2" ],
"data" : {
"timeoutSeconds" : 1234,
"promptOnWake" : true,
"promptOnUnlock" : false,
"ignoreLegacyEndpoints" : false
}
}
Update Posture Check
PATCH /v2/posture-checks/{id}
Authorization
This endpoint requires update
action on the posture-check
resource type.
Path parameters
Parameter | Type | Optional | Description |
---|---|---|---|
id |
Object |
false |
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
type |
String |
true |
Must be one of [OS, PROCESS, DOMAIN, MAC, MFA, PROCESS_MULTI]. |
attributes |
Array[String] |
true |
|
ownerIdentityId |
String |
true |
|
data |
Object |
true |
|
data.domains |
Array[String] |
true |
|
data.macAddresses |
Array[String] |
true |
|
data.timeoutSeconds |
Integer |
true |
|
data.promptOnWake |
Boolean |
true |
|
data.promptOnUnlock |
Boolean |
true |
|
data.ignoreLegacyEndpoints |
Boolean |
true |
|
data.operatingSystems |
Array[Object] |
true |
|
data.operatingSystems[].type |
String |
true |
Must be one of [Windows, Android, iOS, Linux, macOS, WindowsServer]. |
data.operatingSystems[].versions |
Array[String] |
true |
|
data.process |
Object |
true |
|
data.process.osType |
String |
true |
Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS]. |
data.process.path |
String |
true |
|
data.process.hashes |
Array[String] |
true |
|
data.process.signerFingerprint |
String |
true |
|
data.processes |
Array[Object] |
true |
|
data.processes[].osType |
String |
true |
Must be one of [Windows, WindowsServer, Android, iOS, Linux, macOS]. |
data.processes[].path |
String |
true |
|
data.processes[].hashes |
Array[String] |
true |
|
data.processes[].signerFingerprints |
Array[String] |
true |
|
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 |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/posture-checks/b2a8d3d8-477b-4874-9bff-534a0f84d581' -i -X PATCH \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJOb1NCS2VjeExxT0c4V1V5TFZYTm9nIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjFkMmQ5ZTVhLWRlZWMtNGI1Zi1iNGY1LTc5M2JjMTYwMmM0ZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTcwMTY3NjY1MSwiZXhwIjoxNzAxNjgwMjUxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjIwMDYzMmI3LTNlNDUtNDAzNC04MmVlLTY1MzVkZDNiMDc3N1wiLFwibGFzdE1vZGlmaWVkXCI6MTcwMTY3NjY1MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.B385MGVShsXvMmF_mG8IRYFKGTG6Jcc9tD6K_qFRlyOZJjfHWZa3u90HsHyvNEGHfvG5IaFdcuOfxMcYBM-nPU-A83EKQ0-I-1QxupwpHfOROb265afWcoTLpYeJr4BKHkbZhsJD7HJphqGwv8bqepIWpyfdCNGrM7d6TT3c80oMb8RF0jTTj-9tukPkVpL1RqyY63tltYOALnordoBrLRxt-f7CSO6--EWdfY_3KUx0woRIVMVeUomFNQNnWScjgXj1SE_ATMS6uLauRGY30Wn0_AChrWc70SB5KCg8MoaRLzY0d7Lf9ElZcrt2Z0u4cm57E-Dzf4wO3ERfYsAHcg' \
-d '{"name":"Our Service 1156850925638","attributes":["#Attr-4","#Attr-2"]}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1167
{
"id" : "b2a8d3d8-477b-4874-9bff-534a0f84d581",
"zitiId" : "ziti.id.erxg0pzz",
"name" : "Our Service 1156850925638",
"networkId" : "0dc6be59-5280-4785-aae4-789286e990c7",
"type" : "MFA",
"ownerIdentityId" : "8f863727-2797-4534-96ac-34e9c1a1ed48",
"createdBy" : "8f863727-2797-4534-96ac-34e9c1a1ed48",
"createdAt" : "2023-12-04T07:57:30.151096Z",
"updatedAt" : "2023-12-04T07:57:31.763336Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#Attr-4", "#Attr-2" ],
"data" : {
"timeoutSeconds" : 1234,
"promptOnWake" : true,
"promptOnUnlock" : false,
"ignoreLegacyEndpoints" : false
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/b2a8d3d8-477b-4874-9bff-534a0f84d581"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0dc6be59-5280-4785-aae4-789286e990c7",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/8008a08e-2478-459b-b6b1-03ce1b6ed8cb",
"title" : "Update PostureCheck",
"profile" : "meta"
}
}
}
Delete Posture Check
DELETE /v2/posture-checks/{id}
Authorization
This endpoint requires delete
action on the posture-check
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 |
|