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.eyJqdGkiOiIwTURlTzk0MVNmemtJUDhRNTRxYVVRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjIwMGRlOWFhLWIwOTQtNDgxNi1hNGViLTQ1N2FkNDJjYjhiNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMwOSwiZXhwIjoxNjg1NjM5OTA5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImZhYWYxZjU3LTVjYTktNGQwNy05YzZmLTRiZGIzNzhhNGFjYlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMwOX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.EJmt3KuJdkX1aIollKwIxRONqihe1s1dirMTFReTS15S8eX9Ewzz_xTndZYiKZZUb9iO3_cNJ9T4ZIJyPsE9xt77UKRe5DCC6A-pZH_UoSdYTyu3SSq6TvL_z9imaS6MjnU_mOEN7q7qikL3cmtW-PQ7G8y0i_RaGhep4F04Z39SCp4uHOy3fTpUmjfw6JfRDm04unwHad5erngWheYOgy9No-Vh9NyihKH7tUM3ug6DZeru-LP94CABEveWwJIbTDflo10GtF3b5pe980nWpBUb7uTe3WIsTGrVxsaZ2SKYbbUbq5AuXlU_8AK_CR6sbpyMPsF_lLtzmxH6naRxsg' \
-d '{"name":"New NG","billingAccountId":"4f8ba6a2-ec85-4243-880b-07011454217c","ownerIdentityId":"e7c1ae7e-7e49-4ced-9fcf-d89968561e15"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 782
{
"id" : "8232a511-f787-41b8-bfbb-f39ddcbf6f84",
"name" : "New NG",
"shortName" : "NEWNG1",
"billingAccountId" : "4f8ba6a2-ec85-4243-880b-07011454217c",
"ownerIdentityId" : "e7c1ae7e-7e49-4ced-9fcf-d89968561e15",
"createdBy" : "200de9aa-b094-4816-a4eb-457ad42cb8b4",
"createdAt" : "2023-06-01T16:18:29.530721Z",
"updatedAt" : "2023-06-01T16:18:29.530721Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/8232a511-f787-41b8-bfbb-f39ddcbf6f84"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/a385a6fb-3bb1-44a5-8b27-c2c0a18b4670",
"title" : "Create NetworkGroup",
"profile" : "meta"
}
}
}
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/3b28bb47-2487-48db-bdb7-c46a2bf8d76f' -i -X DELETE \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ3RVZsZUlZWFIxRnVrc25ORlhwaTZBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjAzOGZhZjQ2LWRjN2ItNDlhMi1hYjEwLTc5OWU5YTVkNmE0YSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMwNywiZXhwIjoxNjg1NjM5OTA3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQwYTZmMGVlLWNhOTgtNDRiNC04YzJlLWU0YTQ5YjgwODJiY1wiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMwN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.LgvgSW0sty-foBniO1j4-TWL2fYajPVJDJCuVKk6QpCBIkUJjeRSkUlXqIS6238YA-bRTgR1X4XOM7ykBMuaAyvQSK-1bO2GsUTA3jlz1A3EWxdW2PJSzGhlkybwtzTUjckWTAbWsQvzGdoBTKWpM4PvxcBvXtveVQkJLLRY9ZJXVUGwOIK9hda4YhKN3-FmlnmcKVeg0s0DmxxhQL8mBvXsCBjh2fx0MA7G1J0fCZdxb114ABShd_kBbpwhzlTeadls1Bq65thVExLgHCiBsKwcjAnw4JRnOKH7YBiE6jHfh7WwQ6lH_9BOgSxaFP4q0q2Mr07OaxfqW2xG4aeONw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 782
{
"id" : "3b28bb47-2487-48db-bdb7-c46a2bf8d76f",
"name" : "Test-NG",
"shortName" : "nw-71",
"billingAccountId" : "fd52328c-6234-4ed2-ae12-d8788f186301",
"ownerIdentityId" : "e9e8a2db-e813-4f23-a435-2602ec2febd1",
"createdBy" : "2f7ff9b0-02fe-4acd-8f0b-f8a46337e3ed",
"createdAt" : "2023-06-01T16:18:27.388783Z",
"updatedAt" : "2023-06-01T16:18:27.388783Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/3b28bb47-2487-48db-bdb7-c46a2bf8d76f"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/4e1b0199-d94c-4d10-b0f8-c7f1674ffc67",
"title" : "Delete NetworkGroup",
"profile" : "meta"
}
}
}
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/1af1a6bf-6c5e-4f48-984e-540262e09409' -i -X GET \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJHUm5mMS15QlpscHZtNUVtSEJrUWFBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImYyMDkyYzY3LWY0YjAtNDYxYS05ODc4LWU2M2JhZmZjNWI2MSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMwOSwiZXhwIjoxNjg1NjM5OTA5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImM5NDMyZjNhLWVjYjAtNGFkZS1hMGMwLTJmZjFmYzkyNTlhMVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMwOX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.VkvoUZeQRsJJI0CNF--zkZvpYrWld_RYB36ZY1SlsIkO0215gJOa_otOTIG8h8s8CgraqeLZitGxRzxReNNvUpkgFVZhEzUolxOo1eSJZxwkayS0B7fQVIwGEOzP25Mmzz0siBxUbKruXHxf_7wQ2skfN1Kvgdn4VMUrvZ6wEayCNYlCqYiEVfMt1zXC9W-SB5aJxBcCg-eEPo-ebKnqsLjNOyb8h9EwqlXD2vn8sqegqyLHwN14h5wXdlYRr2QSHfH-S2AGf42-M3lHLxGrdhM8NaKU-1palmFQ5EJYtY_ogpiWoWR2fxF145wMNDxBbcKfQYlRGskSO5dIHlf8DQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 577
{
"id" : "1af1a6bf-6c5e-4f48-984e-540262e09409",
"name" : "Test-NG",
"shortName" : "nw-141",
"billingAccountId" : "19ae85c1-682e-4c26-9a9b-0db63488216c",
"ownerIdentityId" : "fac552f2-e5ac-443f-b5ca-b30d88873247",
"createdBy" : "8fe29952-f10b-4b52-8614-f5f62143a541",
"createdAt" : "2023-06-01T16:18:29.283276Z",
"updatedAt" : "2023-06-01T16:18:29.283276Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/1af1a6bf-6c5e-4f48-984e-540262e09409"
}
}
}
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.eyJqdGkiOiJGWUFGNmp5OUNnVlBkZTRRdUlFVTR3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjcxYzZiNjU1LTdmZjgtNGI1ZS1iZGViLTE2MjlhMzViNjI4OSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMwOCwiZXhwIjoxNjg1NjM5OTA4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjg3YzQ0MzFmLWYwNjQtNDYzMS05YjM1LTRiNWYxNTZhNjYyMlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMwOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.dlLEzvyrbK_Rw1hwfWWYrXKjffET8yyAj71l8y0IGg_TERQJN1qTPF_nh2lPdFUAC3lVDId6JpAV1QLgAW8pmq9ClBx63Pb_giP5pHugrpk2kOzKFpGhr40DtHFJweoHd172-XvUF7Dp2qp9eQyTPDF53jyajaOE1A7MVVfLcTlWusoP_cisKgJmbsawU3EZOlTDTI-By1wmrPFY4e2bF78OcyxnQWTpwAKuEBd8AbI_4_HVl5ukTLWVbgJLuuMnGnd2NxYYK-HbEHn3AAYCfWoYILLFb8cRfFIkzBfZbTNIwIETgplIJG_WYAn3cX-Eci-hoR6MPj4gpuY8S2Z-6A'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1572
{
"_embedded" : {
"networkGroupList" : [ {
"id" : "73d8c1ee-9c16-4b7e-96d5-2d1f4903be62",
"name" : "Updated NG Name-8",
"shortName" : "nw-101",
"billingAccountId" : "96a563f6-065b-4a5e-a09a-a22deca2ac6d",
"ownerIdentityId" : "ae8673c4-4a8f-4b4e-af36-e641cd565416",
"createdBy" : "0fbff213-249a-4115-ad58-f7ee1522b6de",
"createdAt" : "2023-06-01T16:18:28.257395Z",
"updatedAt" : "2023-06-01T16:18:28.552787Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/73d8c1ee-9c16-4b7e-96d5-2d1f4903be62"
}
}
}, {
"id" : "8d181e0d-c4c1-4592-b213-362d39f6b2c1",
"name" : "Test-NG",
"shortName" : "nw-121",
"billingAccountId" : "3d0a08c6-436d-45d6-91f7-2dd3a7fd494b",
"ownerIdentityId" : "c4cf6391-93c4-4b0a-88e7-3ada6434e0f4",
"createdBy" : "a0bb349c-11e5-4f75-af87-2ce82b621621",
"createdAt" : "2023-06-01T16:18:28.836194Z",
"updatedAt" : "2023-06-01T16:18:28.836194Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/8d181e0d-c4c1-4592-b213-362d39f6b2c1"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups"
}
},
"page" : {
"size" : 3500,
"totalElements" : 2,
"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/73d8c1ee-9c16-4b7e-96d5-2d1f4903be62' -i -X PATCH \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJNaDFuR1NFNFJNaTcwYzVaZDgxMjNnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImM2MjM0ZTI5LWJmOWYtNDU4ZS1iYjMzLWQwNGRlNTg0OTYxNSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMwOCwiZXhwIjoxNjg1NjM5OTA4LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjBlMjhiZDk2LTliNjUtNDAxNC1hNDQ4LWJlYmNhYjFiZTkwNVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMwOH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.e61JeSzSYkndrXQ3zm3hj4znQ-649kJIIioshMF2wOD0xrOxgJNGTKJuun-gfiMTNLCBKxOJ4_mfcUJfl4V2FUunyo0WT8Cg90Nz80go3_qVjcj0_3036Bc0tCxA79nW1Wmhg7hzS7Svd1KIrQwporAqIiATSg1RQetB1iX5zC-ITGPsPO9EqNTC5k0iQuXIYzy1SpL_kt50MwpnIQCsVkOgL6kzA-jCDjSmjRYAJ-QA2OViJrFjx-OU-XvfEUD0KQDuJCkeLDVLDxGrNmbVcV_aAi7hZ74y8sfAweBHVyACW1sHZl_ax7rru2mjqWrEWqDKixcJ1TAZG9H8d2E6Yw' \
-d '{"name":"Updated NG Name-8","billingAccountId":"96a563f6-065b-4a5e-a09a-a22deca2ac6d","ownerIdentityId":"ae8673c4-4a8f-4b4e-af36-e641cd565416"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 793
{
"id" : "73d8c1ee-9c16-4b7e-96d5-2d1f4903be62",
"name" : "Updated NG Name-8",
"shortName" : "nw-101",
"billingAccountId" : "96a563f6-065b-4a5e-a09a-a22deca2ac6d",
"ownerIdentityId" : "ae8673c4-4a8f-4b4e-af36-e641cd565416",
"createdBy" : "0fbff213-249a-4115-ad58-f7ee1522b6de",
"createdAt" : "2023-06-01T16:18:28.257395Z",
"updatedAt" : "2023-06-01T16:18:28.552787Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/73d8c1ee-9c16-4b7e-96d5-2d1f4903be62"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/8c618258-4d12-47de-9628-6773f67c1b2f",
"title" : "Update NetworkGroup",
"profile" : "meta"
}
}
}
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 |
|
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.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 |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/networks' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJNYVZhUXBSM3Ezd0d5YW82TGplY0pRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImRjN2Q1OTgzLTM4YTQtNDYxYy05ZWZhLWMyOGFmMzc0YmY2OSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQyMywiZXhwIjoxNjg1NjQwMDIzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImM0NDhkNjNhLWQyNDQtNGMxNS1iOWQ0LWUyYzY5ZDE5Mzg5NFwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQyM31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.HS6Db9Si9w0I-lQEwKovH_5nxWxiZiPFUqVhNr7sm-srAsXi2RrQzxjqfp_e7RT3Txv9cnMBkjeTRLNYm4fwgADIidjXLMZ8-3H0jLio3wMNS14WXgEFlUT5Wk_m0udd_6BogTPgZe6P8mM1l_l5Rihd5H3joW2kTZylbO8R5IkMvD7P3Fz8Uarn18Q6dEa7RbVATZOsks6HWv17SC9ifJ8lE55fQ5ODUJt0sNpS8IiQjPH9MOD5cTtt03TfPs0K2muyVbzWRaqYcLsC7SlVuxNABUZyTqdjldcKO6hRwl0gMlJSSKqPR6EcjoHiTZIKrvJMNE4SYaCssStUvu5ldg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 50794
{
"_embedded" : {
"networkList" : [ {
"id" : "254c6320-b34c-42f5-96b6-2fb07e04e922",
"ownerIdentityId" : "3dd35b23-02b3-4417-8347-e21f015e25d2",
"createdBy" : "3dd35b23-02b3-4417-8347-e21f015e25d2",
"createdAt" : "2023-06-01T16:20:22.709609Z",
"updatedAt" : "2023-06-01T16:20:22.710122Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-1334",
"networkGroupId" : "aae1111b-da8e-4baa-8e19-14cbdf56722b",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "6ae10f11-6080-47cf-925f-df4b6181b59a",
"ownerIdentityId" : "3dd35b23-02b3-4417-8347-e21f015e25d2",
"networkId" : "254c6320-b34c-42f5-96b6-2fb07e04e922",
"domainName" : null,
"name" : "network-1334-nc",
"hostId" : "1062a06c-cfa4-4bcd-b7c5-90f5109fe2e3",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.711066Z",
"updatedAt" : "2023-06-01T16:20:22.711066Z",
"deletedAt" : null,
"createdBy" : "3dd35b23-02b3-4417-8347-e21f015e25d2",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/aae1111b-da8e-4baa-8e19-14cbdf56722b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
}
}
}, {
"id" : "425694af-4633-408a-b5a8-06666290bb82",
"ownerIdentityId" : "692b7f2a-b609-44e8-b251-ace58352d92b",
"createdBy" : "692b7f2a-b609-44e8-b251-ace58352d92b",
"createdAt" : "2023-06-01T16:20:22.805131Z",
"updatedAt" : "2023-06-01T16:20:22.828795Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Upload Test Network",
"networkGroupId" : "b6991852-6361-49a7-a8e9-4e1560d198e1",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "3a4d5a5e-8a05-450f-a8d9-900518fe2791",
"ownerIdentityId" : "692b7f2a-b609-44e8-b251-ace58352d92b",
"networkId" : "425694af-4633-408a-b5a8-06666290bb82",
"domainName" : "d262f654-aca7-451a-b87e-75b43ac80ff0.sandbox.netfoundry.io",
"name" : "NCAWSi-testncinstance",
"hostId" : "39490ae5-b9f2-4eb0-8a72-a7809982f432",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.820799Z",
"updatedAt" : "2023-06-01T16:20:22.831360Z",
"deletedAt" : null,
"createdBy" : "692b7f2a-b609-44e8-b251-ace58352d92b",
"deletedBy" : null,
"softwareDeploymentStateId" : "557a0833-41b3-48d2-abb8-7550683fab2d"
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/b6991852-6361-49a7-a8e9-4e1560d198e1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/425694af-4633-408a-b5a8-06666290bb82"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=425694af-4633-408a-b5a8-06666290bb82"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=425694af-4633-408a-b5a8-06666290bb82"
}
}
}, {
"id" : "6eab6187-108d-43ed-a6c3-7fa9c9ae72ef",
"ownerIdentityId" : "7f48c58e-ae4d-4743-a0f4-2a371bfda412",
"createdBy" : "7f48c58e-ae4d-4743-a0f4-2a371bfda412",
"createdAt" : "2023-06-01T16:20:22.607180Z",
"updatedAt" : "2023-06-01T16:20:22.635666Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Test Network Yaml",
"networkGroupId" : "5977c195-ed6b-4676-aee2-23ad00a28125",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "6b835796-bc5b-44b3-b0b0-71e9a4d3048a",
"ownerIdentityId" : "7f48c58e-ae4d-4743-a0f4-2a371bfda412",
"networkId" : "6eab6187-108d-43ed-a6c3-7fa9c9ae72ef",
"domainName" : "c9269a29-d733-419c-87f3-bd31b13d03d3.sandbox.netfoundry.io",
"name" : "NCAWSi-testncinstance",
"hostId" : "f2a898b8-5f32-4e6f-9a29-8802d805fd34",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.626576Z",
"updatedAt" : "2023-06-01T16:20:22.639579Z",
"deletedAt" : null,
"createdBy" : "7f48c58e-ae4d-4743-a0f4-2a371bfda412",
"deletedBy" : null,
"softwareDeploymentStateId" : "e974571e-9868-4753-a2ee-33f4dcc2ffe0"
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/5977c195-ed6b-4676-aee2-23ad00a28125",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=6eab6187-108d-43ed-a6c3-7fa9c9ae72ef"
}
}
}, {
"id" : "7c7f9641-a2b1-4045-98d8-f6ad3d10fc37",
"ownerIdentityId" : "46fc2edc-cef9-495c-8a01-6701c752fe57",
"createdBy" : "46fc2edc-cef9-495c-8a01-6701c752fe57",
"createdAt" : "2023-06-01T16:20:22.522997Z",
"updatedAt" : "2023-06-01T16:20:22.523458Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-1324",
"networkGroupId" : "5977c195-ed6b-4676-aee2-23ad00a28125",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "753c15da-6fd2-421d-90d8-b576cf57ec39",
"ownerIdentityId" : "46fc2edc-cef9-495c-8a01-6701c752fe57",
"networkId" : "7c7f9641-a2b1-4045-98d8-f6ad3d10fc37",
"domainName" : null,
"name" : "network-1324-nc",
"hostId" : "48a7f56e-49d3-45dd-980d-6dac6c0b2363",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.524400Z",
"updatedAt" : "2023-06-01T16:20:22.524400Z",
"deletedAt" : null,
"createdBy" : "46fc2edc-cef9-495c-8a01-6701c752fe57",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/5977c195-ed6b-4676-aee2-23ad00a28125",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=7c7f9641-a2b1-4045-98d8-f6ad3d10fc37"
}
}
}, {
"id" : "9b51e970-b134-45bd-9412-1ae38f533f48",
"ownerIdentityId" : "2013a95c-36b1-4d9d-922a-51ced6640068",
"createdBy" : "2013a95c-36b1-4d9d-922a-51ced6640068",
"createdAt" : "2023-06-01T16:20:22.390821Z",
"updatedAt" : "2023-06-01T16:20:22.453653Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "suspend-test",
"networkGroupId" : "31115136-7c1e-4ba1-a5d2-3337e9be4e53",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "SUSPENDED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "ed723911-2bae-4381-aacc-874be3702405",
"ownerIdentityId" : "2013a95c-36b1-4d9d-922a-51ced6640068",
"networkId" : "9b51e970-b134-45bd-9412-1ae38f533f48",
"domainName" : null,
"name" : "suspend-test-nc",
"hostId" : "02efc6db-068e-4a23-ad3d-1e03aba93deb",
"status" : "SUSPENDED",
"createdAt" : "2023-06-01T16:20:22.392187Z",
"updatedAt" : "2023-06-01T16:20:22.462261Z",
"deletedAt" : null,
"createdBy" : "2013a95c-36b1-4d9d-922a-51ced6640068",
"deletedBy" : null,
"softwareDeploymentStateId" : "44488313-ef9e-435b-9836-51f772b144a1"
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/31115136-7c1e-4ba1-a5d2-3337e9be4e53",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9b51e970-b134-45bd-9412-1ae38f533f48"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=9b51e970-b134-45bd-9412-1ae38f533f48"
}
}
}, {
"id" : "9d113e70-a790-4e59-91fa-60960bb3ad78",
"ownerIdentityId" : "8dc9e3f4-32ef-4266-a732-9c0e070dc9ae",
"createdBy" : "8dc9e3f4-32ef-4266-a732-9c0e070dc9ae",
"createdAt" : "2023-06-01T16:20:22.751413Z",
"updatedAt" : "2023-06-01T16:20:22.755066Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-1339",
"networkGroupId" : "b6991852-6361-49a7-a8e9-4e1560d198e1",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "74fd2d88-f1bb-4d65-a421-630a483d190e",
"ownerIdentityId" : "8dc9e3f4-32ef-4266-a732-9c0e070dc9ae",
"networkId" : "9d113e70-a790-4e59-91fa-60960bb3ad78",
"domainName" : null,
"name" : "network-1339-nc",
"hostId" : "f6310f87-bcf8-43cf-9054-f80d6afb1659",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.758877Z",
"updatedAt" : "2023-06-01T16:20:22.758877Z",
"deletedAt" : null,
"createdBy" : "8dc9e3f4-32ef-4266-a732-9c0e070dc9ae",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/b6991852-6361-49a7-a8e9-4e1560d198e1",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=9d113e70-a790-4e59-91fa-60960bb3ad78"
}
}
}, {
"id" : "b063f6b6-26b2-40be-af26-304af7896531",
"ownerIdentityId" : "29fcf049-d22c-437e-ab68-623f6f1efe26",
"createdBy" : "29fcf049-d22c-437e-ab68-623f6f1efe26",
"createdAt" : "2023-06-01T16:20:22.893987Z",
"updatedAt" : "2023-06-01T16:20:22.942250Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "resume-test",
"networkGroupId" : "06468244-3e9b-4677-8b31-a46e42236c66",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "fdfbf1d0-5d9d-4747-ab55-3f35dd8d4773",
"ownerIdentityId" : "29fcf049-d22c-437e-ab68-623f6f1efe26",
"networkId" : "b063f6b6-26b2-40be-af26-304af7896531",
"domainName" : "new-domain.nf.io",
"name" : "resume-test-nc",
"hostId" : "6766eebf-56d0-4807-b354-5a635d1c23ac",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.895689Z",
"updatedAt" : "2023-06-01T16:20:22.921704Z",
"deletedAt" : null,
"createdBy" : "29fcf049-d22c-437e-ab68-623f6f1efe26",
"deletedBy" : null,
"softwareDeploymentStateId" : "f7654dd5-0945-4725-8317-391bc0d06631"
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/06468244-3e9b-4677-8b31-a46e42236c66",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b063f6b6-26b2-40be-af26-304af7896531"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=b063f6b6-26b2-40be-af26-304af7896531"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=b063f6b6-26b2-40be-af26-304af7896531"
}
}
}, {
"id" : "c2b8b044-8500-438a-b132-2fe7ae725fa0",
"ownerIdentityId" : "3e30d377-9a5b-457e-8e23-0fdac2bab1f4",
"createdBy" : "3e30d377-9a5b-457e-8e23-0fdac2bab1f4",
"createdAt" : "2023-06-01T16:20:22.996699Z",
"updatedAt" : "2023-06-01T16:20:22.997288Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-1356",
"networkGroupId" : "59bbf197-5195-43e6-b610-62cd31c4c72d",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "48c5beca-7786-42a7-90c9-9342ded7cf32",
"ownerIdentityId" : "3e30d377-9a5b-457e-8e23-0fdac2bab1f4",
"networkId" : "c2b8b044-8500-438a-b132-2fe7ae725fa0",
"domainName" : null,
"name" : "network-1356-nc",
"hostId" : "94b1e96c-b96a-40ab-8fa6-7a3055c173f6",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.998447Z",
"updatedAt" : "2023-06-01T16:20:22.998447Z",
"deletedAt" : null,
"createdBy" : "3e30d377-9a5b-457e-8e23-0fdac2bab1f4",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/59bbf197-5195-43e6-b610-62cd31c4c72d",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=c2b8b044-8500-438a-b132-2fe7ae725fa0"
}
}
}, {
"id" : "f7e15cb0-9672-468a-96ea-c96a2401f525",
"ownerIdentityId" : "d1a3f5f1-5c88-4d6e-b036-7993a4e8f1cd",
"createdBy" : "d1a3f5f1-5c88-4d6e-b036-7993a4e8f1cd",
"createdAt" : "2023-06-01T16:20:22.382654Z",
"updatedAt" : "2023-06-01T16:20:22.383423Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-1312",
"networkGroupId" : "d9af3555-8abb-4636-a5d5-139fef659e64",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "61884202-24f0-47e1-b9f5-a9a0163d8f10",
"ownerIdentityId" : "d1a3f5f1-5c88-4d6e-b036-7993a4e8f1cd",
"networkId" : "f7e15cb0-9672-468a-96ea-c96a2401f525",
"domainName" : null,
"name" : "network-1312-nc",
"hostId" : "868371f2-1146-4550-8a44-6a34fb8f5698",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.384570Z",
"updatedAt" : "2023-06-01T16:20:22.384570Z",
"deletedAt" : null,
"createdBy" : "d1a3f5f1-5c88-4d6e-b036-7993a4e8f1cd",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/d9af3555-8abb-4636-a5d5-139fef659e64",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=f7e15cb0-9672-468a-96ea-c96a2401f525"
}
}
}, {
"id" : "f996c32c-2e52-4b39-ba7b-0b88b7963ac0",
"ownerIdentityId" : "3d2fecbc-fd55-4dbb-9b2f-bfca2073a3bb",
"createdBy" : "3d2fecbc-fd55-4dbb-9b2f-bfca2073a3bb",
"createdAt" : "2023-06-01T16:20:22.889781Z",
"updatedAt" : "2023-06-01T16:20:22.890477Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-1344",
"networkGroupId" : "4b90e9bc-f2df-4aa4-b846-1510b5238ead",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "0a6f2719-3645-4b4e-b07a-dd1bb8b20962",
"ownerIdentityId" : "3d2fecbc-fd55-4dbb-9b2f-bfca2073a3bb",
"networkId" : "f996c32c-2e52-4b39-ba7b-0b88b7963ac0",
"domainName" : null,
"name" : "network-1344-nc",
"hostId" : "b989266c-e272-4bf3-99fe-66d462391353",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.891633Z",
"updatedAt" : "2023-06-01T16:20:22.891633Z",
"deletedAt" : null,
"createdBy" : "3d2fecbc-fd55-4dbb-9b2f-bfca2073a3bb",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/4b90e9bc-f2df-4aa4-b846-1510b5238ead",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=f996c32c-2e52-4b39-ba7b-0b88b7963ac0"
}
}
}, {
"id" : "fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c",
"ownerIdentityId" : "7b3dc0a1-b808-46bf-8981-e215b37d87f7",
"createdBy" : "7b3dc0a1-b808-46bf-8981-e215b37d87f7",
"createdAt" : "2023-06-01T16:20:22.680928Z",
"updatedAt" : "2023-06-01T16:20:22.681423Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-1329",
"networkGroupId" : "9d6ee1d8-b720-47c5-a2fe-b38a0ea407c4",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "46565d0d-a230-4c2c-8e41-557ce311b34f",
"ownerIdentityId" : "7b3dc0a1-b808-46bf-8981-e215b37d87f7",
"networkId" : "fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c",
"domainName" : null,
"name" : "network-1329-nc",
"hostId" : "d0a4f31f-5e59-4183-a9de-abb863ab664b",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.682743Z",
"updatedAt" : "2023-06-01T16:20:22.682743Z",
"deletedAt" : null,
"createdBy" : "7b3dc0a1-b808-46bf-8981-e215b37d87f7",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/9d6ee1d8-b720-47c5-a2fe-b38a0ea407c4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=fc1ae595-f6b3-4aab-92c0-f9e631ae7b1c"
}
}
} ]
},
"_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/254c6320-b34c-42f5-96b6-2fb07e04e922' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJLcFFVWVBNN2pWZ2xuSVNNOUdCbnl3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjQ3YjNjODNjLWQ3NzYtNDMyYy1iNzM0LTVmMjkzZWVjOGIyNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQyMiwiZXhwIjoxNjg1NjQwMDIyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImVlYWM3YTgwLTExOWMtNGU1Yi1iZjRiLTBkM2JkZmQxY2RkNlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQyMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Ze-0n_SoYDTbIFCfS8-qlsKkdoJMLy9u80UVlKC_zQTQE9RWWpTrh8w_Yvh3P7fmO9jD_3COvjNH6RfBPGW3ki3GPTqECWHi2mlRr0emEoJfaXBpYPjROSItIEOUimiViyMLHfLbOz6vohk8c6EP7ZGMYu45YyV335bfqMVX6Ly9DRaW4S3ZYRLSmRLECtxuFYubzUMHRBp1kVHOqSrvihsbR37srt7-joR5FiNdcNjftAXCOOF6kjhhywzj1MmP6f9ddPFXflP38nGm-rQ_aa1PRjk0A29Z3OQsQ2Bi_qlDOGbiZFULWEzVCIoOtwCBgBWHDDaSpFh61wCZF9fLZA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 4194
{
"id" : "254c6320-b34c-42f5-96b6-2fb07e04e922",
"ownerIdentityId" : "3dd35b23-02b3-4417-8347-e21f015e25d2",
"createdBy" : "3dd35b23-02b3-4417-8347-e21f015e25d2",
"createdAt" : "2023-06-01T16:20:22.709609Z",
"updatedAt" : "2023-06-01T16:20:22.710122Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "network-1334",
"networkGroupId" : "aae1111b-da8e-4baa-8e19-14cbdf56722b",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "PROVISIONED",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : {
"id" : "6ae10f11-6080-47cf-925f-df4b6181b59a",
"ownerIdentityId" : "3dd35b23-02b3-4417-8347-e21f015e25d2",
"networkId" : "254c6320-b34c-42f5-96b6-2fb07e04e922",
"domainName" : null,
"name" : "network-1334-nc",
"hostId" : "1062a06c-cfa4-4bcd-b7c5-90f5109fe2e3",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:22.711066Z",
"updatedAt" : "2023-06-01T16:20:22.711066Z",
"deletedAt" : null,
"createdBy" : "3dd35b23-02b3-4417-8347-e21f015e25d2",
"deletedBy" : null,
"softwareDeploymentStateId" : null
},
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/aae1111b-da8e-4baa-8e19-14cbdf56722b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=254c6320-b34c-42f5-96b6-2fb07e04e922"
}
}
}
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 |
|
edgeRouters |
Array[Object] |
true |
|
edgeRouters[].name |
String |
true |
|
edgeRouters[].networkId |
String |
true |
|
edgeRouters[].dataCenterId |
String |
true |
Deprecated.. |
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[].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.eyJqdGkiOiJfSzFoTkU0bHp6SjRYU2pobXdEdV9BIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImU0MDdlN2I3LTZkZDktNDYwZS1hNWY5LTk1NzdhZDliOTAzNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQyMywiZXhwIjoxNjg1NjQwMDIzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjdlNzRlNTBjLWM0YTEtNDk1Zi1iYzMwLTg2ZGJmMGMxMGIzMVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQyM31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.b1MpiyU6xhXRojOkrvBSyinDqB17mjNDhLBrCzXQ3akO1xfGxF9SKkpBLk5K7-o284U-NAoRPa79l4-xm8hUCoGczHEaJ0i1pTh_vaWw_iWST-9mWMRlar3QpWAs-hAQuGj4bV7G52Bgz0Gov280jPqWRcDXGfrVB40WZL4Zda590fJ9mLs991ECV5jJT2_SpOwwCM1WbeNmDpLGflWcfqBXKBhwEX7LexpZefpUFvppTbveIxfd7CRAHb7axcM1Zr9-BAk9W1PMRb0l7tGuNkYmOBqUu2cvf71irwAfGfjgLo6GAxue09vWRiJ9dHAVlqpMn9FmlJTV18-M1epg0A' \
-d '{"networkGroupId":"ecd890c5-06ba-4744-b5d2-428c7a610457","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: 3643
{
"id" : "dff406a9-6749-4b27-bf53-15071fb08c32",
"ownerIdentityId" : "e407e7b7-6dd9-460e-a5f9-9577ad9b9034",
"createdBy" : "e407e7b7-6dd9-460e-a5f9-9577ad9b9034",
"createdAt" : "2023-06-01T16:20:23.165465Z",
"updatedAt" : "2023-06-01T16:20:23.165465Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Create Test Network",
"networkGroupId" : "ecd890c5-06ba-4744-b5d2-428c7a610457",
"size" : "small",
"productVersion" : "7.3.18",
"region" : "us-east-1",
"status" : "PROVISIONING",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : null,
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/ecd890c5-06ba-4744-b5d2-428c7a610457",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dff406a9-6749-4b27-bf53-15071fb08c32"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=dff406a9-6749-4b27-bf53-15071fb08c32"
}
}
}
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/52afb4ed-959f-4842-b002-86575828a065' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJpbXFBNjUxRUl3ckZFRk1ob3BlTUx3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjcxZTk4NzMwLTFhZjMtNDcwYS04OTViLWVlMmI0YjI5YTkxMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQyMywiZXhwIjoxNjg1NjQwMDIzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjIyNmQ4Y2JjLWJmNWUtNDZjMy04NzA4LWQwZDdiNzUxYWU0N1wiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQyM31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.AJPqyolYvcrYBpraaKwLLjNUs_7khoSgBf9aDP5--i6jNweHEHgoGGxHDhrUytx2mfwdxlLKd1HJ0br1oFFNf0Lap8B4tbrBKsGC314tXDkt-YQ2WOCFkIbqCI8qEf_K-2jsJW1eFaElog5CLQop__gNKNNLqYWYg7qtMDJYYCh4n388aPlJVBOYaL0eD-gCL9Ho8_ta-N7l2d-vEaao8r85zN72-HNSyJ2af-bcxPrvhbP6HTuquI7d90paUEV5NGQlYMTe354FOZ9Z4htpoK9UG9VhwQS8ziV5QX7_xw-VE6AU6m41AuF2ZI-UuaQduiG4mlDSpubTS4bVx8u_yw'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 3666
{
"id" : "52afb4ed-959f-4842-b002-86575828a065",
"ownerIdentityId" : "6b37cad8-70dd-46f5-adc7-5327a2ece5d1",
"createdBy" : "6b37cad8-70dd-46f5-adc7-5327a2ece5d1",
"createdAt" : "2023-06-01T16:20:23.586693Z",
"updatedAt" : "2023-06-01T16:20:23.603952Z",
"deletedBy" : "71e98730-1af3-470a-895b-ee2b4b29a912",
"deletedAt" : null,
"name" : "network-1396",
"networkGroupId" : "615ea164-90c2-4e62-9217-94ce5e845791",
"size" : "small",
"productVersion" : "7.3.37",
"region" : "us-east-1",
"status" : "DELETING",
"publicCertEnabled" : false,
"domainNameLabel" : null,
"o365BreakoutCategory" : "NONE",
"networkController" : null,
"_links" : {
"network-group" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-groups/615ea164-90c2-4e62-9217-94ce5e845791",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/52afb4ed-959f-4842-b002-86575828a065"
},
"networks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks",
"profile" : "parent"
},
"executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"posture-checks" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"network-controllers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"endpoints" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"app-wans" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"certificate-authorities" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"hosts" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"edge-routers" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"services" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"terminators" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/terminators?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"service-edge-router-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-edge-router-policies?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"process-executions" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/process-executions?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"service-policies" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/service-policies?networkId=52afb4ed-959f-4842-b002-86575828a065"
},
"config-types" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/config-types?networkId=52afb4ed-959f-4842-b002-86575828a065"
}
}
}
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/d97a8c55-1077-4866-9575-1eeda8b3717a' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJfbVNNVmdBTkJ0WkFfMjZyZjhmVVRnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjA3NzVmMWUxLTA3NDktNGRiMC1hNjU2LWNhODI4N2IyOTcwNCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQwMiwiZXhwIjoxNjg1NjQwMDAyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjlmMjcyOTExLTRkNzUtNDUwNS1iYmI5LTQ0YWU5MGY3N2RjMlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQwMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.B8y3HlM3frcZMxFM2MZCrhXVVfyJdc-ATiGHnWHlY9srD7-A3I6Qvo_X2xKYymcV5TD-tF9t7oOhiYTYVAwMxNDW4FFeyghAIGHFnc9gNCG6VkbFXGhZg7_kjLssrfMgNz9Zuo4Z27_e9H43NwSj_Fa8EMJ4Qr4i7Bg_8Vtf4__ei9VVUOrtSrPcNb41bQdWmGHFgJBy-_OKtbZz2dgVsAAIciAgHg29DihTj09zZ8khDcMERGUONWLGPS2fIGSn_-9SbG-JHF4r1tFTZrXV-iw9WyK_NeQ89kT6rOByFWlSHRt6x8HF9pgD-h05eTZZ1xR9_1rBaEeMtAeXXqkU2w'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1235
{
"id" : "d97a8c55-1077-4866-9575-1eeda8b3717a",
"ownerIdentityId" : "20d337e7-02c6-4516-a422-1902c45a9219",
"networkId" : "7a8404ca-8b4a-490f-aadd-94a629755c95",
"domainName" : "new-domain.nf.io",
"name" : "networkcontroller-controller-test-nc",
"hostId" : "db388dbd-4f18-486a-846a-aa801611f5c9",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:20:01.300504Z",
"updatedAt" : "2023-06-01T16:20:02.599541Z",
"deletedAt" : null,
"createdBy" : "20d337e7-02c6-4516-a422-1902c45a9219",
"deletedBy" : null,
"softwareDeploymentStateId" : "18920f75-6658-49a3-826e-e33205ab2e1d",
"_links" : {
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/db388dbd-4f18-486a-846a-aa801611f5c9"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/7a8404ca-8b4a-490f-aadd-94a629755c95",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/d97a8c55-1077-4866-9575-1eeda8b3717a"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/18920f75-6658-49a3-826e-e33205ab2e1d"
}
}
}
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/d97a8c55-1077-4866-9575-1eeda8b3717a/session' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJjTnhBN1lIUE1GSXFzTmZrN2JHTUt3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjVhYWEyYjFjLWY5OWUtNDY4Ny1hZmEwLTU2NzgyNDM1YWFjNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQwMSwiZXhwIjoxNjg1NjQwMDAxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjkwNGRkY2JlLWMwOTItNDJmYy1iYTg5LTVhZDRmZjA1ZDM2MlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQwMX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.LxYtoG9e2guyxBhskCawr5e9EacZu6bkO2miKRViPnQHPEwn1nGqrjciyDfHRHI27ZMr5JW3mupqeaW-JiWB8wvGavE54a-CZJDUdak1YqnBF78ADtk4-JCR5K7Hx7uYuE2d0gwqgeTMx6L7JEG9_fiqEeHy6BBfPFoQ3RtYhByIfbpUm_3k29wbxUQCCoUW1V1M2Yj0qGY3x7gAtuN33JdmuCHRKGpJWckKg30KHDCc-zs6DXis_H-zfmGQ9vqavb5Mdynx47tt1oDOmWW9c-2kLYuS8MvRce33rkDSYzU9dYJHTznLA7VL2DM3mpg6cbNWM6EO1VNO4KpgjeZqHw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 408
{
"sessionToken" : "--- session ---",
"expiresAt" : "2023-06-01T16:20:01.556+00:00",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/d97a8c55-1077-4866-9575-1eeda8b3717a/session"
},
"parent" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/d97a8c55-1077-4866-9575-1eeda8b3717a"
}
}
}
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 |
|
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 |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/network-controllers?createdAt=%3E%3D2023-06-01T15:19:17.692427483Z' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ4MU1icGY5RjhacHUybl8yNnY3NU53IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhiMzgzMGZmLTBiYTYtNDNjNy05NmQyLTM1YzQ5ZGJjMDgzMiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM1NywiZXhwIjoxNjg1NjM5OTU3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjc1ZjJkZDNmLWRmZWYtNDJmMy04NTU3LTFiYWQwMjdlNWM2N1wiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM1N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.BisEVh3h88eLQmgvXAjSn0UNuYfr62h97nlejBPEr6mOE2CBVcxSO8Q5LT_yoKCIHgt-WwL05F-nUF8OlF0ZgCf3_HzA4yIL5kyOzAoNX9FOa8VusY8YmvmouYbOkuZW7HMQUB5Hcdb7YoV3iFuhVGW_JkflhXxS5zuujJVR2NamuNckHLoezZVrBLOH-Y1dy9c4km5F_P10LRnxWU-gBkHaXrHLUu4IFM5Q1vTDmM2XrQBDjKyjPqbz2aE-4MQuVDhLicmL2LEj4k8I2XJ5OxrAzXm6zx7irpVNmyxJyTHkrnt1g0HO279I5CB3YiS_6Z8d9vgPY3GVPi5ehfgTvg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 3064
{
"_embedded" : {
"networkControllerList" : [ {
"id" : "8b37677a-3180-4fc5-893d-b5f4259b8b1c",
"ownerIdentityId" : "5304ebf0-a6ed-405e-b383-e9025ab907bb",
"networkId" : "cc849955-7ff7-4942-824d-c480321dd670",
"domainName" : "x1SDrY0QL91EAlZs81cOW.fake.com",
"name" : "NetworkController Find Test 1 - NC",
"hostId" : "ded5a1bd-ef75-4f0b-aa1e-7b671e69ce40",
"status" : "PROVISIONED",
"createdAt" : "2023-06-01T16:19:17.651846Z",
"updatedAt" : "2023-06-01T16:19:17.919463Z",
"deletedAt" : null,
"createdBy" : "5304ebf0-a6ed-405e-b383-e9025ab907bb",
"deletedBy" : null,
"softwareDeploymentStateId" : "876ed58f-50b0-413c-9794-98c1ebc56459",
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/cc849955-7ff7-4942-824d-c480321dd670",
"profile" : "parent"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ded5a1bd-ef75-4f0b-aa1e-7b671e69ce40"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/8b37677a-3180-4fc5-893d-b5f4259b8b1c"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/876ed58f-50b0-413c-9794-98c1ebc56459"
}
}
}, {
"id" : "c7e9d9ac-3813-478a-bc6f-472f6e3b6337",
"ownerIdentityId" : "5304ebf0-a6ed-405e-b383-e9025ab907bb",
"networkId" : "53e2fa56-f76d-486c-8dc6-7f13cb231ca4",
"domainName" : "1zHONmcmAm7hJ3QItA2F1.fake.com",
"name" : "NetworkController Find Test 2 - NC",
"hostId" : "3d897ce8-4135-4e48-b478-ecf888e81b72",
"status" : "PROVISIONING",
"createdAt" : "2023-06-01T16:19:17.656785Z",
"updatedAt" : "2023-06-01T16:19:18.009264Z",
"deletedAt" : null,
"createdBy" : "5304ebf0-a6ed-405e-b383-e9025ab907bb",
"deletedBy" : null,
"softwareDeploymentStateId" : "cd9ab65c-c753-43e3-87f4-3f5613f96477",
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/53e2fa56-f76d-486c-8dc6-7f13cb231ca4",
"profile" : "parent"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3d897ce8-4135-4e48-b478-ecf888e81b72"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers/c7e9d9ac-3813-478a-bc6f-472f6e3b6337"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/cd9ab65c-c753-43e3-87f4-3f5613f96477"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/network-controllers?createdAt=%3E%3D2023-06-01T15:19:17.692427483Z"
}
},
"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[].toServicePolicyId |
String |
true |
|
interceptConflicts[].conflictingServiceInfo |
Array[Object] |
true |
|
interceptConflicts[].conflictingServiceInfo[].fromServiceId |
String |
true |
|
interceptConflicts[].conflictingServiceInfo[].toServiceId |
String |
true |
|
jwt |
String |
true |
|
online |
Boolean |
true |
|
mfaEnabled |
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.eyJqdGkiOiJXT0NGVDlUYnJFSk9HVXJMekRDRWZRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImI2NTZhNDI5LWIxYTItNGEwNC05Y2NlLWEyMmJlZjc3OTcyYSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM3NCwiZXhwIjoxNjg1NjM5OTc0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjA4NjBjM2RiLTAxYmUtNDRiZS1hMWJhLWE0NjU3N2U4NzI2YVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM3NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Pk1OQwl1HMyjW6qZWurnaztyWZ-R_pmwpq91NE6f0AC8weVwo2O9nIIBQoMFvuLE3JfayLcptTlMgRuFKt1GuoyvJj8QrObrWHTJlrgdOkUtyCKKt_11OHIrHGC9viyrugkkrF3Cpw6-6XTWDsstK09tjx5IwE3Z5wrlaEThpE4FA09mIdvqnJvOgXITKtn-1CIbl3b4XOTaesdwKjiNkTNOljh6W1LWP6lC6sDJHFyYQ3hq2Oz953TZu35X31S-YSXDEqXWovRWRbUrP0HbFonwtPpsF9nEI6bP_PjzOmHUnA083p2_A9Z4S1ykcjVFIDg-uosdAiMJ8GHzr9WcYQ'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 6171
{
"_embedded" : {
"endpointList" : [ {
"id" : "475088c1-c1e7-4eeb-b232-cea3b363b828",
"ownerIdentityId" : "f7771a4f-4397-4a05-b77b-461bdd9b3a8c",
"createdBy" : "f7771a4f-4397-4a05-b77b-461bdd9b3a8c",
"createdAt" : "2023-06-01T16:19:34.839629Z",
"updatedAt" : "2023-06-01T16:19:34.839629Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "337a1d37-6800-44a5-af2e-d068dca92d21",
"zitiId" : "ziti-id-550",
"name" : "endpoint-549",
"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" : [ ],
"jwt" : null,
"online" : false,
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/337a1d37-6800-44a5-af2e-d068dca92d21",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/475088c1-c1e7-4eeb-b232-cea3b363b828"
}
}
}, {
"id" : "4e74acd5-1b21-40d5-877e-7080eb0a7238",
"ownerIdentityId" : "6c9991d4-520f-4b48-b46d-3a2012dc6193",
"createdBy" : "6c9991d4-520f-4b48-b46d-3a2012dc6193",
"createdAt" : "2023-06-01T16:19:34.981326Z",
"updatedAt" : "2023-06-01T16:19:34.981326Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "af1f2379-6659-45d8-a933-ae387b4bc4c5",
"zitiId" : "ziti-id-577",
"name" : "endpoint-576",
"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" : [ ],
"jwt" : null,
"online" : false,
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/af1f2379-6659-45d8-a933-ae387b4bc4c5",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/4e74acd5-1b21-40d5-877e-7080eb0a7238"
}
}
}, {
"id" : "82a7d79d-f5b0-41da-877b-ed2b61cf234e",
"ownerIdentityId" : "db1d0af6-3cff-4141-a889-4444e8e5938c",
"createdBy" : "db1d0af6-3cff-4141-a889-4444e8e5938c",
"createdAt" : "2023-06-01T16:19:34.988563Z",
"updatedAt" : "2023-06-01T16:19:34.988563Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "af1f2379-6659-45d8-a933-ae387b4bc4c5",
"zitiId" : "ziti-id-584",
"name" : "rQ3rIJxJXQDpLHulX1Pl1",
"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" : [ ],
"jwt" : null,
"online" : false,
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/af1f2379-6659-45d8-a933-ae387b4bc4c5",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/82a7d79d-f5b0-41da-877b-ed2b61cf234e"
}
}
}, {
"id" : "a87d0a52-c49b-4075-9495-702070ef3aad",
"ownerIdentityId" : "f99985b7-96d6-48e3-ab24-38398f325d66",
"createdBy" : "f99985b7-96d6-48e3-ab24-38398f325d66",
"createdAt" : "2023-06-01T16:19:34.871525Z",
"updatedAt" : "2023-06-01T16:19:34.871525Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "92e1424d-63fa-48a6-bb2c-6695d8a9576b",
"zitiId" : "5ff83e31-fe30-445a-b93c-c54c6320fb8b",
"name" : "Refresh Success Endpoint",
"typeId" : "device",
"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" : [ ],
"jwt" : null,
"online" : false,
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/92e1424d-63fa-48a6-bb2c-6695d8a9576b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/a87d0a52-c49b-4075-9495-702070ef3aad"
}
}
} ]
},
"_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/d56207ad-5745-4236-9859-f166ce46ade9' -i -X GET \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJUb3pOc1UtZGhaeUI4ZU9Eb19WbkRnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImNkZjZjMWQ1LTQzYTgtNDI2NC04ODY4LWVkNGMxZGM4OWQ0YiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM3NiwiZXhwIjoxNjg1NjM5OTc2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImQyMDNmMjA4LTYzMGEtNGZlMS05YmVlLWJmZjk3YjdkMWJmM1wiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM3Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ehFlRNhZncN2XmevuTeggtMEynANl7-KB_w6yDuYoA-4gCJ8ggycOZlELSRUODH8K4gFTV-IG1ofPVL-OVd6fExOyUX_VQlP0LJFlNk4K0fYYvXtzRpm5ASNVWUU63-9JdlhnbLPb1PgokzdHQ14odT9UA8MZ8buuQhLg3RTdTZ2n5SGztlQOlg30CxVbiG4A5hecSSPSF1zd28NdQcC3TRwIIQD6E2p9lWLBrUywXaz1WO1LGvXKLhJP-aQUygNe0Kc_Z7ewGWjkfdzpfARs3XVaTqoD60pEots6QN4BPboYlr-EaIwrIuuMUtX9Ca5ZLUVq8Ap0dPwb5apT2qR3A'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1290
{
"id" : "d56207ad-5745-4236-9859-f166ce46ade9",
"ownerIdentityId" : "7a832dc4-860c-4afe-a4f9-1f69e06a8123",
"createdBy" : "7a832dc4-860c-4afe-a4f9-1f69e06a8123",
"createdAt" : "2023-06-01T16:19:36.901852Z",
"updatedAt" : "2023-06-01T16:19:36.901852Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "37de48d0-3a38-4e66-823c-f3a8200fbe34",
"zitiId" : "ziti-id-751",
"name" : "endpoint-750",
"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" : [ ],
"jwt" : null,
"online" : false,
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/37de48d0-3a38-4e66-823c-f3a8200fbe34",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/d56207ad-5745-4236-9859-f166ce46ade9"
}
}
}
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[].toServicePolicyId |
String |
true |
|
interceptConflicts[].conflictingServiceInfo |
Array[Object] |
true |
|
interceptConflicts[].conflictingServiceInfo[].fromServiceId |
String |
true |
|
interceptConflicts[].conflictingServiceInfo[].toServiceId |
String |
true |
|
jwt |
String |
true |
|
online |
Boolean |
true |
|
mfaEnabled |
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.eyJqdGkiOiJLeGxDUUFjQ3BneVRucGVVaEZnMmNnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjA5MTc0ODU0LTcyMmYtNGJhMy1iOGVkLTdmNzgwNDk5ODUyYSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM0NiwiZXhwIjoxNjg1NjM5OTQ2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjIxM2NjZGNmLWI1MjQtNDMxMC05M2M5LWUzYzJhYmE2MTBlMVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM0Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.pO5QUgTkGvRyxOau10-roz3u5wnJ_hMTOra1PDAX3V0s_t9gUujAWiPEBeOVIZb7ehSQvV_kUIknNtlzk302qc4IdcdUS-8zeVbsZvXWJqDntA4coTRw6DVgls_jQJetFcC2_xYzpz9_v9L124NmUhgwZY_O9xSz925TbqpOD2rncGqZS29lrrucgaNelJ5tj0G5PyxZKcZI1p4rSTiUeRFuZ0-zHuqC9KHEd9h03mPHcyz3nDZCvZxZt97vf9TJOoNfv87eTxKeRn4ULdw2pouvQzGjSnzToFqhA9Q44tbOeZ1Lz6YjBjPNvGh4UzKbyLJtyBNhz9bwdfOTU0IqEg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 3506
{
"_embedded" : {
"endpointList" : [ {
"id" : "c061fb82-36fb-4546-abe2-76011855dd3a",
"ownerIdentityId" : "346a4a5e-27d1-4cef-8c74-6e155d262320",
"createdBy" : "346a4a5e-27d1-4cef-8c74-6e155d262320",
"createdAt" : "2023-06-01T16:19:06.392574Z",
"updatedAt" : "2023-06-01T16:19:06.392574Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "13c2ed95-dce3-4ffe-8b39-2bd4458d6a1e",
"zitiId" : "ziti-id-98",
"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" : "f270db2f-51f7-4add-9cb8-94d6134b1ebd",
"syncResourceId" : "-WgRlNv4AoVfToI34lpKM",
"attributes" : [ "#attr2", "#attr1" ],
"interceptConflicts" : [ ],
"jwt" : null,
"online" : false,
"mfaEnabled" : false,
"managedBy" : "Sync",
"jwtExpiresAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/c061fb82-36fb-4546-abe2-76011855dd3a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/13c2ed95-dce3-4ffe-8b39-2bd4458d6a1e",
"profile" : "parent"
},
"auth-policy" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/auth-policies/0d4b30cc-1db0-4833-a093-c50822dc1578"
}
}
}, {
"id" : "ee3dcb91-7c53-48b7-ace3-9e307e214cc8",
"ownerIdentityId" : "346a4a5e-27d1-4cef-8c74-6e155d262320",
"createdBy" : "346a4a5e-27d1-4cef-8c74-6e155d262320",
"createdAt" : "2023-06-01T16:19:06.398503Z",
"updatedAt" : "2023-06-01T16:19:06.398503Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "13c2ed95-dce3-4ffe-8b39-2bd4458d6a1e",
"zitiId" : "ziti-id-100",
"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" : "b780e5e9-7384-4ed1-b680-98389e6ea599",
"syncResourceId" : "raEOm76vbFEMAr7M4iohM",
"attributes" : [ "#attr3", "#attr1" ],
"interceptConflicts" : [ ],
"jwt" : null,
"online" : false,
"mfaEnabled" : false,
"managedBy" : "Sync",
"jwtExpiresAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/ee3dcb91-7c53-48b7-ace3-9e307e214cc8"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/13c2ed95-dce3-4ffe-8b39-2bd4458d6a1e",
"profile" : "parent"
}
}
} ]
},
"_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.eyJqdGkiOiJTbkpWVW5IQzAxM3VpRkwzZVNiNWlRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImEyYjVjZmEyLTBkYjAtNGFiYS1hOWJjLTRkNWE1MmJkZWM1YiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM3NiwiZXhwIjoxNjg1NjM5OTc2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjcyOWE0M2I2LWUxZjMtNDYyZC1hZmY5LThlODY5ZTJiMzcwYlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM3Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.YVu128WmLzQlwVr6NaT3avqgDVwgvpPGoPVuo2xSs4Ln0gsPo_hXfnyYcxcybfrhes05-tMFpAyz-AQoZESJCMle-6YvmPvleoCa123kqZc4dxtjgDTHq9ACwnVYAPrkXcT8HwtQqBB3C8cr_HHAQP1WhfAtT1wBUKRCWYG120D6ZFQJOTegD-IGWhi_MUm8LMeK12I-Ht0kMz7tJ5XptRrOrTTFwALPR_SKReptHUi0tePX2QtG9aW0ssX8Vxnuo-HjH8OXCjh32HWnt9Z9Fv76xQAVNT0mANUybykfE5uJ5xqzjeJZ8tsWYH22EI_6i0nbSPEe00H5Uw9wdf2Q2Q' \
-d '{"networkId":"b178ad89-f21f-4d4e-94fd-d4bddaa9031c","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: 1348
{
"id" : "27b4ea0a-18d2-42e2-8e81-d382570c4861",
"ownerIdentityId" : "a2b5cfa2-0db0-4aba-a9bc-4d5a52bdec5b",
"createdBy" : "a2b5cfa2-0db0-4aba-a9bc-4d5a52bdec5b",
"createdAt" : "2023-06-01T16:19:36.078250Z",
"updatedAt" : "2023-06-01T16:19:36.083449Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "b178ad89-f21f-4d4e-94fd-d4bddaa9031c",
"zitiId" : "4dff879f-b388-4b9e-968f-f30d11f8cd5f",
"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" : [ ],
"jwt" : "jwthere",
"online" : false,
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : "2023-06-01T16:19:36.019435Z",
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b178ad89-f21f-4d4e-94fd-d4bddaa9031c",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/27b4ea0a-18d2-42e2-8e81-d382570c4861"
}
}
}
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/6b13d56c-c240-4dc1-bc32-f91aab71e3e6' -i -X PATCH \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI0UWVVSzgxdktSaTJJVk1Fb3RNQ0FRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjIwYjg1NmJkLTI0ZWYtNDJkNS1hZjY0LTM4MWU3MzE5NjJlZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM3NiwiZXhwIjoxNjg1NjM5OTc2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImYyY2M5Y2Y1LWU3ZGEtNGY4Ni05YTYzLWY5OGExZDk0ZTZhMFwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM3Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.loZwZMhdNHpSRgal5m_bJqThvlS-seUNtfpCXiBUHsUAcdLXXHCjvDCS00QIqvIksoU64GNcLbYA5cYrWf1Pj0V6-fuuj0It9aNY4Am1wn7kikJRhvWHebe6fdimVmo7u6f37JCD9HZzgocAXIz2GNS7URvgVU5rwPk9URoQDVjr7TLT0LVE7qc5Fu2xoCNEY7k5aIACscxURXlRKhu_lvoAEpt44XABtQi3DbiMRiXxv2HyNXD_rm2xIIydKpMCFW5OUMTLknydxG5f9llzHGXZZBfU-tYE8rI87TOcnvF5zJbrzuqa8mjYob37obDZGUAoOK-wZuWgkEG_kUSrcA' \
-d '{"name":"Test endpoint 02 updated"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1302
{
"id" : "6b13d56c-c240-4dc1-bc32-f91aab71e3e6",
"ownerIdentityId" : "6d8f5468-10a8-4633-8271-d5752956067a",
"createdBy" : "6d8f5468-10a8-4633-8271-d5752956067a",
"createdAt" : "2023-06-01T16:19:36.724945Z",
"updatedAt" : "2023-06-01T16:19:36.763780Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "b60db58a-1db4-4061-aaf6-89e280a9a20d",
"zitiId" : "ziti-id-731",
"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" : [ ],
"jwt" : null,
"online" : false,
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b60db58a-1db4-4061-aaf6-89e280a9a20d",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/6b13d56c-c240-4dc1-bc32-f91aab71e3e6"
}
}
}
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/679d2a49-165a-444a-8fab-f14c3442e3e2' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJEZlRZaVptZUdZLW4yYmZDRVNTRk13IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjYyYWM4ZWJmLTc2NWYtNDhiMS04NjFjLTU0YjIyMGEwNDI1MSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM3NywiZXhwIjoxNjg1NjM5OTc3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjZlMTFkMTUyLTljOWUtNDgyMi04ZGU4LWQ5ZjY3NjgwYThkYVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM3N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.cLQG97Ddo6E3S6XWTNNmo0pSCWrQb2tkwEnyIPPm-0oq5-Tuy-GFEuP5PM7K7jQiYHNbxZO6l_dsb_bJDPU-VdYndQQyeUORot8jTskvb25cgzz-8aCMjdawq0NySYkyiqUh7tz9s1E1UZCMg2s1qexafBH-UnWNQ_Wqj0eRCTzEpcTVsnhCuBgIAs-Qi1MlHM_numKTbajFlQFYXhiBVcdzQpy0fu7GT-99hz_KyyuqQuumZa3kbUaBCAg1w-iZZXi8e4WYEYJoCHvQYmciG77q8yUGuUZI72_LUuGCIC73-dci-HGK6oVanQzMLzARdD_dA_5bgfNsTyYRodwZEA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1346
{
"id" : "679d2a49-165a-444a-8fab-f14c3442e3e2",
"ownerIdentityId" : "9620b07f-7a16-4f6e-a85d-d81a1dbc6503",
"createdBy" : "9620b07f-7a16-4f6e-a85d-d81a1dbc6503",
"createdAt" : "2023-06-01T16:19:37.064112Z",
"updatedAt" : "2023-06-01T16:19:37.081637Z",
"deletedBy" : "62ac8ebf-765f-48b1-861c-54b220a04251",
"deletedAt" : "2023-06-01T16:19:37.081Z",
"networkId" : "06ac155f-26c0-427c-b7ef-aa242ffc1421",
"zitiId" : "ziti-id-794",
"name" : "endpoint-793",
"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" : [ ],
"jwt" : null,
"online" : false,
"mfaEnabled" : false,
"managedBy" : null,
"jwtExpiresAt" : null,
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/06ac155f-26c0-427c-b7ef-aa242ffc1421",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/endpoints/679d2a49-165a-444a-8fab-f14c3442e3e2"
}
}
}
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 |
|
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 |
|
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.eyJqdGkiOiJ1VEl1aGwydDFaalJUNVhqNGs4V2tnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImEzMjJmNmI3LTRkNWYtNGI3MS1iMTE0LTc4NDk5M2YyNDg1YiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMyOSwiZXhwIjoxNjg1NjM5OTI5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjhmMGU1NWU5LTRjZDMtNDkzOS05YTFhLTEzZWY5YjdhNGM0MVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMyOX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.abQQHwyNtkb3Nr_kbrqs7w15T1yBYuuES-KPZ8XgZIcM4GE_6Kyf5gd5tTMYUZ9l_WL_XjlAgS5iUz7aHbde7pZdILV758hio-Bn0aHtgMcpcM9dO7lZdz6OQYUg-PxOtn0Q5BL0lQV4kl8CHDYMcoSOJzMgySVbG4h7a9wlFh_YKOEwp1p1MBjmx40kim_v_tgm9TmHVV9uptBWMHGiHIw2Xb2UeMo1ggVUtBfMp1UZsOA70JOQh3-xaTzMo7lE9gB93neI6QBKpAyaHupRq3dlE7XEY4B970hMk0PrHbhR2tLOFOUTRkH-91dvkexQcC0D-TYvy-89wbEWvzjELA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 173699
{
"_embedded" : {
"edgeRouterList" : [ {
"id" : "059ea7f5-b647-4c62-9869-b43ed07f3ba2",
"hostId" : "c0496b6d-6274-4068-adb0-49a2b1be3087",
"ownerIdentityId" : "7bd347d2-086d-4df0-a351-3db7699de165",
"createdBy" : "7bd347d2-086d-4df0-a351-3db7699de165",
"createdAt" : "2023-06-01T16:18:36.131754Z",
"updatedAt" : "2023-06-01T16:18:36.131754Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-69",
"domainName" : null,
"name" : "er-test-68",
"productVersion" : "7.3.36",
"networkId" : "fe739808-230c-4df5-8585-244008c83034",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/059ea7f5-b647-4c62-9869-b43ed07f3ba2"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/c0496b6d-6274-4068-adb0-49a2b1be3087"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fe739808-230c-4df5-8585-244008c83034",
"profile" : "parent"
}
}
}, {
"id" : "08cd66ae-15be-406e-9ad3-bf17073182b8",
"hostId" : "10964c9b-2a49-461e-b347-9dabb2029b5d",
"ownerIdentityId" : "4238e99e-e835-4f1f-8379-fa15e26d436e",
"createdBy" : "4238e99e-e835-4f1f-8379-fa15e26d436e",
"createdAt" : "2023-06-01T16:18:48.935966Z",
"updatedAt" : "2023-06-01T16:18:49.080467Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-487",
"domainName" : null,
"name" : "Updated name",
"productVersion" : "7.3.36",
"networkId" : "e82de4d8-ab53-4ec6-a4d8-387538df9e91",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/08cd66ae-15be-406e-9ad3-bf17073182b8"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/10964c9b-2a49-461e-b347-9dabb2029b5d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e82de4d8-ab53-4ec6-a4d8-387538df9e91",
"profile" : "parent"
}
}
}, {
"id" : "0b3d2d90-8517-462a-bfac-176b5e63cda9",
"hostId" : "df1dfe59-f693-4836-8de4-aa5e3eb9fb89",
"ownerIdentityId" : "48c36730-6d5b-4a95-b300-ef55efdf6285",
"createdBy" : "48c36730-6d5b-4a95-b300-ef55efdf6285",
"createdAt" : "2023-06-01T16:18:49.303978Z",
"updatedAt" : "2023-06-01T16:18:49.303978Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-514",
"domainName" : null,
"name" : "er-test-513",
"productVersion" : "7.3.36",
"networkId" : "ec3559bc-3ce9-4322-baab-f9faf78afeaf",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0b3d2d90-8517-462a-bfac-176b5e63cda9"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/df1dfe59-f693-4836-8de4-aa5e3eb9fb89"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec3559bc-3ce9-4322-baab-f9faf78afeaf",
"profile" : "parent"
}
}
}, {
"id" : "0b6e7eb5-3226-4f88-b6ce-5950d85fee55",
"hostId" : "8cba5ac3-e589-488d-affd-7778804c0012",
"ownerIdentityId" : "e94733cc-ee58-48a2-a2d0-169300e9163b",
"createdBy" : "e94733cc-ee58-48a2-a2d0-169300e9163b",
"createdAt" : "2023-06-01T16:18:49.689609Z",
"updatedAt" : "2023-06-01T16:18:49.689609Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-532",
"domainName" : null,
"name" : "er-test-531",
"productVersion" : "7.3.36",
"networkId" : "2b23120a-f96d-4746-90a5-86bbf48d21ce",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0b6e7eb5-3226-4f88-b6ce-5950d85fee55"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8cba5ac3-e589-488d-affd-7778804c0012"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2b23120a-f96d-4746-90a5-86bbf48d21ce",
"profile" : "parent"
}
}
}, {
"id" : "0de24bf2-5f4e-447b-80cf-1958d908219f",
"hostId" : "14eb6616-43bf-4571-8ad5-abc1cb18fadf",
"ownerIdentityId" : "c80fe472-0740-4431-9d56-3ce2893157e2",
"createdBy" : "c80fe472-0740-4431-9d56-3ce2893157e2",
"createdAt" : "2023-06-01T16:18:49.268833Z",
"updatedAt" : "2023-06-01T16:18:49.474295Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-505",
"domainName" : null,
"name" : "er-test-504",
"productVersion" : "7.3.36",
"networkId" : "ec3559bc-3ce9-4322-baab-f9faf78afeaf",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/0de24bf2-5f4e-447b-80cf-1958d908219f"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/14eb6616-43bf-4571-8ad5-abc1cb18fadf"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec3559bc-3ce9-4322-baab-f9faf78afeaf",
"profile" : "parent"
}
}
}, {
"id" : "11973cc3-8591-4fb2-89cb-8b04682dc23a",
"hostId" : "cd7597cc-ab09-4873-9aba-90f4f5401a2a",
"ownerIdentityId" : "89493637-3aff-431a-b62c-8d088c7798d3",
"createdBy" : "89493637-3aff-431a-b62c-8d088c7798d3",
"createdAt" : "2023-06-01T16:18:48.374474Z",
"updatedAt" : "2023-06-01T16:18:48.374474Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-459",
"domainName" : null,
"name" : "edgerouter-460",
"productVersion" : "7.3.69",
"networkId" : "de40ff83-856a-42ee-81cb-ee93456bfcf4",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/11973cc3-8591-4fb2-89cb-8b04682dc23a"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/cd7597cc-ab09-4873-9aba-90f4f5401a2a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/de40ff83-856a-42ee-81cb-ee93456bfcf4",
"profile" : "parent"
}
}
}, {
"id" : "15cf3ea8-9964-42b0-a13b-a116c938dfe3",
"hostId" : "079e692a-868c-4eaa-8314-92fbcadf652b",
"ownerIdentityId" : "6431f694-bf44-4ed7-9fc5-757962954254",
"createdBy" : "6431f694-bf44-4ed7-9fc5-757962954254",
"createdAt" : "2023-06-01T16:18:44.010495Z",
"updatedAt" : "2023-06-01T16:18:44.010495Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-273",
"domainName" : null,
"name" : "er-test-272",
"productVersion" : "7.3.36",
"networkId" : "2d1c60d7-ffd9-426e-9279-4d9b84f6c7cc",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/15cf3ea8-9964-42b0-a13b-a116c938dfe3"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/079e692a-868c-4eaa-8314-92fbcadf652b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d1c60d7-ffd9-426e-9279-4d9b84f6c7cc",
"profile" : "parent"
}
}
}, {
"id" : "1778cbb4-fb84-4e28-8213-5d50e0023c15",
"hostId" : "19cb1a0b-50d0-4957-9674-3c37c20826d0",
"ownerIdentityId" : "1d7414e3-cec8-4336-824b-c89ca0119d18",
"createdBy" : "1d7414e3-cec8-4336-824b-c89ca0119d18",
"createdAt" : "2023-06-01T16:18:47.748905Z",
"updatedAt" : "2023-06-01T16:18:47.748905Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-426",
"domainName" : null,
"name" : "er-test-425",
"productVersion" : "7.3.36",
"networkId" : "5d87e5be-da7d-4575-8335-6ced823212ce",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1778cbb4-fb84-4e28-8213-5d50e0023c15"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/19cb1a0b-50d0-4957-9674-3c37c20826d0"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5d87e5be-da7d-4575-8335-6ced823212ce",
"profile" : "parent"
}
}
}, {
"id" : "1799e1eb-3493-4cb4-943b-92fd754694f1",
"hostId" : "0166ca88-dbb9-461c-a414-b39664c6b825",
"ownerIdentityId" : "e26cc9b0-8b59-4eb2-8dd0-08cfd6b7d3bf",
"createdBy" : "e26cc9b0-8b59-4eb2-8dd0-08cfd6b7d3bf",
"createdAt" : "2023-06-01T16:18:42.541663Z",
"updatedAt" : "2023-06-01T16:18:42.541663Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-222",
"domainName" : null,
"name" : "er-test-221",
"productVersion" : "7.3.36",
"networkId" : "e4855948-13df-460b-a0ef-019b216e9193",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1799e1eb-3493-4cb4-943b-92fd754694f1"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0166ca88-dbb9-461c-a414-b39664c6b825"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e4855948-13df-460b-a0ef-019b216e9193",
"profile" : "parent"
}
}
}, {
"id" : "19eeea0a-4d94-4de8-81f3-fa93b3f5b3d8",
"hostId" : "cf32c083-99d2-4b4c-bcb7-3f6ffcbe6a3a",
"ownerIdentityId" : "46d692a9-6ce3-4bd2-8b7d-96cc94c13011",
"createdBy" : "46d692a9-6ce3-4bd2-8b7d-96cc94c13011",
"createdAt" : "2023-06-01T16:18:40.469166Z",
"updatedAt" : "2023-06-01T16:18:40.469166Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-168",
"domainName" : null,
"name" : "er-test-167",
"productVersion" : "7.3.36",
"networkId" : "118eb5f1-5fef-4375-9de8-8d591cc30040",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/19eeea0a-4d94-4de8-81f3-fa93b3f5b3d8"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/cf32c083-99d2-4b4c-bcb7-3f6ffcbe6a3a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/118eb5f1-5fef-4375-9de8-8d591cc30040",
"profile" : "parent"
}
}
}, {
"id" : "1b363ef3-70e0-452a-806b-1e2a0bc7c43d",
"hostId" : "0c8907ea-155e-4901-9e75-f3e2502400ee",
"ownerIdentityId" : "dc1c02b3-03ca-469b-8ef2-ced0efc76b97",
"createdBy" : "dc1c02b3-03ca-469b-8ef2-ced0efc76b97",
"createdAt" : "2023-06-01T16:18:43.049209Z",
"updatedAt" : "2023-06-01T16:18:43.049209Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-240",
"domainName" : null,
"name" : "er-test-239",
"productVersion" : "7.3.36",
"networkId" : "bc682a95-cdb8-4a1c-a3a6-e39b1e6a0dc9",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1b363ef3-70e0-452a-806b-1e2a0bc7c43d"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0c8907ea-155e-4901-9e75-f3e2502400ee"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bc682a95-cdb8-4a1c-a3a6-e39b1e6a0dc9",
"profile" : "parent"
}
}
}, {
"id" : "1f48c96c-14ae-4dfc-bfe4-0cc690bf4356",
"hostId" : "323ad9fd-a6f9-4ad1-9881-2e2ac5632e2b",
"ownerIdentityId" : "7df4fdcf-d691-4ef1-a948-92a076b715ef",
"createdBy" : "7df4fdcf-d691-4ef1-a948-92a076b715ef",
"createdAt" : "2023-06-01T16:18:48.735803Z",
"updatedAt" : "2023-06-01T16:18:48.735803Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-472",
"domainName" : null,
"name" : "er-test-471",
"productVersion" : "7.3.36",
"networkId" : "4caf7312-f993-4fd2-b389-597845e7ea34",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/1f48c96c-14ae-4dfc-bfe4-0cc690bf4356"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/323ad9fd-a6f9-4ad1-9881-2e2ac5632e2b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4caf7312-f993-4fd2-b389-597845e7ea34",
"profile" : "parent"
}
}
}, {
"id" : "2084da71-609d-4b9c-babc-54cc47951daf",
"hostId" : "f0987635-4ce5-4156-bcf9-079a8e6e3f21",
"ownerIdentityId" : "6c4df55e-c6e8-4b26-86e0-1c2bd9e35583",
"createdBy" : "6c4df55e-c6e8-4b26-86e0-1c2bd9e35583",
"createdAt" : "2023-06-01T16:18:49.683558Z",
"updatedAt" : "2023-06-01T16:18:49.683558Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-529",
"domainName" : null,
"name" : "er-test-528",
"productVersion" : "7.3.36",
"networkId" : "2b23120a-f96d-4746-90a5-86bbf48d21ce",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2084da71-609d-4b9c-babc-54cc47951daf"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f0987635-4ce5-4156-bcf9-079a8e6e3f21"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2b23120a-f96d-4746-90a5-86bbf48d21ce",
"profile" : "parent"
}
}
}, {
"id" : "22b011da-3785-4239-899b-f452561c7f4b",
"hostId" : "3ccdbae3-948c-45b4-9f30-ed333d89258d",
"ownerIdentityId" : "1e2d2a0c-d368-4238-badc-a198ba7da805",
"createdBy" : "1e2d2a0c-d368-4238-badc-a198ba7da805",
"createdAt" : "2023-06-01T16:18:33.475312Z",
"updatedAt" : "2023-06-01T16:18:34.081260Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "2x5L2D0AWJw9FrRzaUbwB",
"domainName" : null,
"name" : "Test edge router 1685636311",
"productVersion" : "7.3.36",
"networkId" : "44e573b0-1367-4f7a-affa-e402741fcab7",
"jwt" : null,
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : "4670a47a-3eb6-4c45-bd8e-875f588c646c",
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/22b011da-3785-4239-899b-f452561c7f4b"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3ccdbae3-948c-45b4-9f30-ed333d89258d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/44e573b0-1367-4f7a-affa-e402741fcab7",
"profile" : "parent"
},
"softwareDeploymentState" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/software-deployment-states/4670a47a-3eb6-4c45-bd8e-875f588c646c"
}
}
}, {
"id" : "22f73ca5-f2af-4e59-9a90-bcefc0862a42",
"hostId" : "915d354d-88d7-42d4-bebe-01417eed92f7",
"ownerIdentityId" : "16a7d330-f45d-465f-9b8c-fa049c0acdc4",
"createdBy" : "16a7d330-f45d-465f-9b8c-fa049c0acdc4",
"createdAt" : "2023-06-01T16:18:41.158648Z",
"updatedAt" : "2023-06-01T16:18:41.158648Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-186",
"domainName" : null,
"name" : "er-test-185",
"productVersion" : "7.3.36",
"networkId" : "dc6ada1c-550c-413d-945a-db4a0b4da18e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/22f73ca5-f2af-4e59-9a90-bcefc0862a42"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/915d354d-88d7-42d4-bebe-01417eed92f7"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dc6ada1c-550c-413d-945a-db4a0b4da18e",
"profile" : "parent"
}
}
}, {
"id" : "2442da41-5fe0-49c6-9fcf-95ba74f69e47",
"hostId" : "98c345ae-573a-495a-a16c-ab679e92026e",
"ownerIdentityId" : "fac9895a-4537-494c-a399-27e9b5988dc5",
"createdBy" : "fac9895a-4537-494c-a399-27e9b5988dc5",
"createdAt" : "2023-06-01T16:18:43.096027Z",
"updatedAt" : "2023-06-01T16:18:43.096027Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-243",
"domainName" : null,
"name" : "er-test-242",
"productVersion" : "7.3.36",
"networkId" : "bc682a95-cdb8-4a1c-a3a6-e39b1e6a0dc9",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2442da41-5fe0-49c6-9fcf-95ba74f69e47"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/98c345ae-573a-495a-a16c-ab679e92026e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bc682a95-cdb8-4a1c-a3a6-e39b1e6a0dc9",
"profile" : "parent"
}
}
}, {
"id" : "2ba03fcc-fe2c-467e-918a-88e209785089",
"hostId" : "cd09fcb7-e310-4974-a21e-af0e1781d8c2",
"ownerIdentityId" : "a742eff0-b811-491d-b1e6-ca018a0dec8e",
"createdBy" : "a742eff0-b811-491d-b1e6-ca018a0dec8e",
"createdAt" : "2023-06-01T16:18:38.532371Z",
"updatedAt" : "2023-06-01T16:18:38.532371Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-105",
"domainName" : null,
"name" : "er-test-104",
"productVersion" : "7.3.36",
"networkId" : "d0b12fa0-1086-4757-945c-a2f88661303f",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2ba03fcc-fe2c-467e-918a-88e209785089"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/cd09fcb7-e310-4974-a21e-af0e1781d8c2"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d0b12fa0-1086-4757-945c-a2f88661303f",
"profile" : "parent"
}
}
}, {
"id" : "2ce6fe59-6236-432f-8a98-95a00f5f8a18",
"hostId" : "5ff1794b-e025-43b0-be44-be1732280a73",
"ownerIdentityId" : "7f222061-05a8-4e47-93e4-1e2c0e086962",
"createdBy" : "7f222061-05a8-4e47-93e4-1e2c0e086962",
"createdAt" : "2023-06-01T16:18:38.819418Z",
"updatedAt" : "2023-06-01T16:18:38.819418Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-117",
"domainName" : null,
"name" : "er-test-116",
"productVersion" : "7.3.36",
"networkId" : "b09a8f9b-4c83-402a-bea0-4371f39a722e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2ce6fe59-6236-432f-8a98-95a00f5f8a18"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5ff1794b-e025-43b0-be44-be1732280a73"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b09a8f9b-4c83-402a-bea0-4371f39a722e",
"profile" : "parent"
}
}
}, {
"id" : "2fa0dfe5-a37d-4897-9a42-afb5396124bd",
"hostId" : "64a5293b-1f56-4a7e-bfbc-2a079e527e75",
"ownerIdentityId" : "b72504d7-cc2b-4807-a4c9-184ea4371d8f",
"createdBy" : "b72504d7-cc2b-4807-a4c9-184ea4371d8f",
"createdAt" : "2023-06-01T16:18:31.442370Z",
"updatedAt" : "2023-06-01T16:18:31.442370Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-6",
"domainName" : null,
"name" : "er-test-5",
"productVersion" : "7.3.36",
"networkId" : "44e573b0-1367-4f7a-affa-e402741fcab7",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/2fa0dfe5-a37d-4897-9a42-afb5396124bd"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/64a5293b-1f56-4a7e-bfbc-2a079e527e75"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/44e573b0-1367-4f7a-affa-e402741fcab7",
"profile" : "parent"
}
}
}, {
"id" : "39365424-5c05-4ac3-b354-e6106bb0f0e6",
"hostId" : "397cab4d-cce0-43c9-8174-a45cb93907fe",
"ownerIdentityId" : "ad2d7b56-8ac6-4369-b68d-afe43981656f",
"createdBy" : "ad2d7b56-8ac6-4369-b68d-afe43981656f",
"createdAt" : "2023-06-01T16:18:40.396937Z",
"updatedAt" : "2023-06-01T16:18:40.396937Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-162",
"domainName" : null,
"name" : "er-test-161",
"productVersion" : "7.3.36",
"networkId" : "118eb5f1-5fef-4375-9de8-8d591cc30040",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/39365424-5c05-4ac3-b354-e6106bb0f0e6"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/397cab4d-cce0-43c9-8174-a45cb93907fe"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/118eb5f1-5fef-4375-9de8-8d591cc30040",
"profile" : "parent"
}
}
}, {
"id" : "3bcdc8e0-124e-4753-af58-d430f66ab214",
"hostId" : "3ad3c0b9-edd1-4fd2-8238-1225671aab19",
"ownerIdentityId" : "1afdfe23-8973-437e-9aea-905fd97328b6",
"createdBy" : "1afdfe23-8973-437e-9aea-905fd97328b6",
"createdAt" : "2023-06-01T16:18:48.940915Z",
"updatedAt" : "2023-06-01T16:18:48.940915Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-493",
"domainName" : null,
"name" : "er-test-492",
"productVersion" : "7.3.36",
"networkId" : "e82de4d8-ab53-4ec6-a4d8-387538df9e91",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3bcdc8e0-124e-4753-af58-d430f66ab214"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3ad3c0b9-edd1-4fd2-8238-1225671aab19"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e82de4d8-ab53-4ec6-a4d8-387538df9e91",
"profile" : "parent"
}
}
}, {
"id" : "3f9e0087-5b8f-4219-9188-795cc70a5613",
"hostId" : "52b3d88b-0632-4fa4-b1b1-636f2f4a59c8",
"ownerIdentityId" : "8349a1d0-228a-4850-b390-d67c7da7e54b",
"createdBy" : "8349a1d0-228a-4850-b390-d67c7da7e54b",
"createdAt" : "2023-06-01T16:18:46.703180Z",
"updatedAt" : "2023-06-01T16:18:46.703180Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-369",
"domainName" : null,
"name" : "er-test-368",
"productVersion" : "7.3.36",
"networkId" : "25a93ae7-c302-487f-8c90-65a3a479e7c5",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/3f9e0087-5b8f-4219-9188-795cc70a5613"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/52b3d88b-0632-4fa4-b1b1-636f2f4a59c8"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/25a93ae7-c302-487f-8c90-65a3a479e7c5",
"profile" : "parent"
}
}
}, {
"id" : "425c6a52-100e-49d0-8ee4-91bf0606a48d",
"hostId" : "2ba3bdfa-52f8-4f62-8b6c-90ac26a78ed7",
"ownerIdentityId" : "a4f0463f-9a68-4f28-9d05-6874d4d8ab65",
"createdBy" : "a4f0463f-9a68-4f28-9d05-6874d4d8ab65",
"createdAt" : "2023-06-01T16:18:48.756238Z",
"updatedAt" : "2023-06-01T16:18:48.756238Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-478",
"domainName" : null,
"name" : "er-test-477",
"productVersion" : "7.3.36",
"networkId" : "4caf7312-f993-4fd2-b389-597845e7ea34",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/425c6a52-100e-49d0-8ee4-91bf0606a48d"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2ba3bdfa-52f8-4f62-8b6c-90ac26a78ed7"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4caf7312-f993-4fd2-b389-597845e7ea34",
"profile" : "parent"
}
}
}, {
"id" : "4386e3ce-a734-4d1f-8687-5052042cf85b",
"hostId" : "4c401ea2-6181-4b29-b3ca-d169b953545d",
"ownerIdentityId" : "39b9cde3-b12a-455f-b9e2-e8488ba48cad",
"createdBy" : "39b9cde3-b12a-455f-b9e2-e8488ba48cad",
"createdAt" : "2023-06-01T16:18:44.125453Z",
"updatedAt" : "2023-06-01T16:18:44.125453Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-289",
"domainName" : null,
"name" : "er-ziti-features-288",
"productVersion" : "7.3.4",
"networkId" : "a95e4b2c-ee7f-49eb-8950-01993e9c48c3",
"jwt" : null,
"linkListener" : true,
"online" : false,
"verified" : true,
"status" : "PROVISIONED",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4386e3ce-a734-4d1f-8687-5052042cf85b"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4c401ea2-6181-4b29-b3ca-d169b953545d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a95e4b2c-ee7f-49eb-8950-01993e9c48c3",
"profile" : "parent"
}
}
}, {
"id" : "459139ad-791f-42f8-afa3-f28a7dc7849f",
"hostId" : "58a0f932-4200-4ef6-b354-8f5f1d90a2ed",
"ownerIdentityId" : "b88f7351-76d1-4c42-980e-5fa79afe9346",
"createdBy" : "b88f7351-76d1-4c42-980e-5fa79afe9346",
"createdAt" : "2023-06-01T16:18:36.874508Z",
"updatedAt" : "2023-06-01T16:18:36.874508Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-84",
"domainName" : null,
"name" : "er-test-83",
"productVersion" : "7.3.36",
"networkId" : "c2f13f8d-8b5d-430e-9688-05ec0d67574f",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/459139ad-791f-42f8-afa3-f28a7dc7849f"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/58a0f932-4200-4ef6-b354-8f5f1d90a2ed"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c2f13f8d-8b5d-430e-9688-05ec0d67574f",
"profile" : "parent"
}
}
}, {
"id" : "459d7752-8538-4a7a-abdb-9f80f7b28595",
"hostId" : "bec6bd01-78c1-47f9-921e-7a45cb23bd5b",
"ownerIdentityId" : "814f09c8-7c83-4f12-829d-0281e701a3e8",
"createdBy" : "814f09c8-7c83-4f12-829d-0281e701a3e8",
"createdAt" : "2023-06-01T16:18:46.137556Z",
"updatedAt" : "2023-06-01T16:18:46.137556Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-360",
"domainName" : null,
"name" : "er-test-359",
"productVersion" : "7.3.36",
"networkId" : "73757dbc-a70f-43c5-b50d-c311682ca10e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/459d7752-8538-4a7a-abdb-9f80f7b28595"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bec6bd01-78c1-47f9-921e-7a45cb23bd5b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/73757dbc-a70f-43c5-b50d-c311682ca10e",
"profile" : "parent"
}
}
}, {
"id" : "4876930b-4a1e-43a0-996c-c5c80bf7f0d9",
"hostId" : "fddadea8-6501-4ff3-a754-359c6ca0aceb",
"ownerIdentityId" : "ddc6e731-13d9-446a-abf5-465f86cf21c6",
"createdBy" : "ddc6e731-13d9-446a-abf5-465f86cf21c6",
"createdAt" : "2023-06-01T16:18:49.675832Z",
"updatedAt" : "2023-06-01T16:18:49.675832Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-523",
"domainName" : null,
"name" : "er-test-522",
"productVersion" : "7.3.36",
"networkId" : "2b23120a-f96d-4746-90a5-86bbf48d21ce",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4876930b-4a1e-43a0-996c-c5c80bf7f0d9"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fddadea8-6501-4ff3-a754-359c6ca0aceb"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2b23120a-f96d-4746-90a5-86bbf48d21ce",
"profile" : "parent"
}
}
}, {
"id" : "48f83ad6-b229-4ea2-af61-9beb6d99d8a9",
"hostId" : "2b1382dd-075d-4b8a-8cf5-01d41752c306",
"ownerIdentityId" : "518fbdb7-1089-482a-b298-c3b1d716f7f2",
"createdBy" : "518fbdb7-1089-482a-b298-c3b1d716f7f2",
"createdAt" : "2023-06-01T16:18:39.976940Z",
"updatedAt" : "2023-06-01T16:18:39.976940Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-138",
"domainName" : null,
"name" : "er-test-137",
"productVersion" : "7.3.36",
"networkId" : "490a4bcb-f4c8-4598-96fc-eff3f00df443",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/48f83ad6-b229-4ea2-af61-9beb6d99d8a9"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2b1382dd-075d-4b8a-8cf5-01d41752c306"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/490a4bcb-f4c8-4598-96fc-eff3f00df443",
"profile" : "parent"
}
}
}, {
"id" : "4906090b-2e51-4b6f-9e2f-6c68e7c66183",
"hostId" : "3b32bf1e-a012-48fb-9b87-3d5cef85e8f5",
"ownerIdentityId" : "8e81bf63-4f2e-4a0b-aaf2-ff800a529ef3",
"createdBy" : "8e81bf63-4f2e-4a0b-aaf2-ff800a529ef3",
"createdAt" : "2023-06-01T16:18:45.147395Z",
"updatedAt" : "2023-06-01T16:18:45.147395Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-321",
"domainName" : null,
"name" : "er-test-320",
"productVersion" : "7.3.36",
"networkId" : "8b7bdd2d-9119-406a-b2f6-63659927438c",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4906090b-2e51-4b6f-9e2f-6c68e7c66183"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3b32bf1e-a012-48fb-9b87-3d5cef85e8f5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8b7bdd2d-9119-406a-b2f6-63659927438c",
"profile" : "parent"
}
}
}, {
"id" : "49e875bf-be23-4841-91c4-8c86d63793a9",
"hostId" : "7deba3aa-ab99-488b-ab28-63de3241bdb2",
"ownerIdentityId" : "fa2af0e6-4466-467c-89d1-7fa04a1cd993",
"createdBy" : "fa2af0e6-4466-467c-89d1-7fa04a1cd993",
"createdAt" : "2023-06-01T16:18:44.021851Z",
"updatedAt" : "2023-06-01T16:18:44.021851Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-276",
"domainName" : null,
"name" : "er-test-275",
"productVersion" : "7.3.36",
"networkId" : "2d1c60d7-ffd9-426e-9279-4d9b84f6c7cc",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/49e875bf-be23-4841-91c4-8c86d63793a9"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7deba3aa-ab99-488b-ab28-63de3241bdb2"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d1c60d7-ffd9-426e-9279-4d9b84f6c7cc",
"profile" : "parent"
}
}
}, {
"id" : "4a3e4be1-5197-4dc9-8481-e214192036cc",
"hostId" : "bba54ddc-4957-4a27-bc08-8ac1ee15f550",
"ownerIdentityId" : "11d1ea2a-4b05-4792-bc78-cfe39d1414fd",
"createdBy" : "11d1ea2a-4b05-4792-bc78-cfe39d1414fd",
"createdAt" : "2023-06-01T16:18:42.091165Z",
"updatedAt" : "2023-06-01T16:18:42.091165Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-201",
"domainName" : null,
"name" : "er-test-200",
"productVersion" : "7.3.36",
"networkId" : "dfe4a5d7-94f7-46f4-8713-3e9b92bf7128",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4a3e4be1-5197-4dc9-8481-e214192036cc"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bba54ddc-4957-4a27-bc08-8ac1ee15f550"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dfe4a5d7-94f7-46f4-8713-3e9b92bf7128",
"profile" : "parent"
}
}
}, {
"id" : "4d03b798-22fb-48a6-8bc9-94efee9ab14e",
"hostId" : "d2b62de0-4754-437a-ad98-ba4a855f1eb8",
"ownerIdentityId" : "30bf7250-3f49-4c55-89d4-9938be5391fd",
"createdBy" : "30bf7250-3f49-4c55-89d4-9938be5391fd",
"createdAt" : "2023-06-01T16:18:40.413721Z",
"updatedAt" : "2023-06-01T16:18:40.413721Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-165",
"domainName" : null,
"name" : "er-test-164",
"productVersion" : "7.3.36",
"networkId" : "118eb5f1-5fef-4375-9de8-8d591cc30040",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4d03b798-22fb-48a6-8bc9-94efee9ab14e"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d2b62de0-4754-437a-ad98-ba4a855f1eb8"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/118eb5f1-5fef-4375-9de8-8d591cc30040",
"profile" : "parent"
}
}
}, {
"id" : "4dcdc6d9-d500-412b-b7eb-ad3ee4678339",
"hostId" : "8305d55c-55ad-428b-aa32-af0008f3f410",
"ownerIdentityId" : "878ad3e5-d098-43bf-b43c-d4a71fa84807",
"createdBy" : "878ad3e5-d098-43bf-b43c-d4a71fa84807",
"createdAt" : "2023-06-01T16:18:36.898234Z",
"updatedAt" : "2023-06-01T16:18:36.898234Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-87",
"domainName" : null,
"name" : "er-test-86",
"productVersion" : "7.3.36",
"networkId" : "c2f13f8d-8b5d-430e-9688-05ec0d67574f",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4dcdc6d9-d500-412b-b7eb-ad3ee4678339"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8305d55c-55ad-428b-aa32-af0008f3f410"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c2f13f8d-8b5d-430e-9688-05ec0d67574f",
"profile" : "parent"
}
}
}, {
"id" : "4e940174-4961-47cc-bb6d-8520188c9bf7",
"hostId" : "cd3b2c74-0c7a-4be5-b463-e8e02e0c3dac",
"ownerIdentityId" : "5a94b4f1-83f2-4610-87d8-3b4769f5a628",
"createdBy" : "5a94b4f1-83f2-4610-87d8-3b4769f5a628",
"createdAt" : "2023-06-01T16:18:42.545817Z",
"updatedAt" : "2023-06-01T16:18:42.545817Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-225",
"domainName" : null,
"name" : "er-test-224",
"productVersion" : "7.3.36",
"networkId" : "e4855948-13df-460b-a0ef-019b216e9193",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4e940174-4961-47cc-bb6d-8520188c9bf7"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/cd3b2c74-0c7a-4be5-b463-e8e02e0c3dac"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e4855948-13df-460b-a0ef-019b216e9193",
"profile" : "parent"
}
}
}, {
"id" : "4efbd67b-53be-40b7-8502-dddf3a1b8593",
"hostId" : "b1dd33f0-2cc9-46b2-8dbb-c21c9bd23de9",
"ownerIdentityId" : "d5308c9b-36b1-4a00-ac18-84f6217b699a",
"createdBy" : "d5308c9b-36b1-4a00-ac18-84f6217b699a",
"createdAt" : "2023-06-01T16:18:43.992838Z",
"updatedAt" : "2023-06-01T16:18:43.992838Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-270",
"domainName" : null,
"name" : "er-test-269",
"productVersion" : "7.3.36",
"networkId" : "2d1c60d7-ffd9-426e-9279-4d9b84f6c7cc",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/4efbd67b-53be-40b7-8502-dddf3a1b8593"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b1dd33f0-2cc9-46b2-8dbb-c21c9bd23de9"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d1c60d7-ffd9-426e-9279-4d9b84f6c7cc",
"profile" : "parent"
}
}
}, {
"id" : "51722563-77bd-44f8-862b-fcd7a794d245",
"hostId" : "b19f6d52-c9be-4255-b62d-6f9aae11156a",
"ownerIdentityId" : "03eb2b17-166d-40ec-8302-f6b234ddb9f8",
"createdBy" : "03eb2b17-166d-40ec-8302-f6b234ddb9f8",
"createdAt" : "2023-06-01T16:18:47.751663Z",
"updatedAt" : "2023-06-01T16:18:47.751663Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-429",
"domainName" : null,
"name" : "er-test-428",
"productVersion" : "7.3.36",
"networkId" : "5d87e5be-da7d-4575-8335-6ced823212ce",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/51722563-77bd-44f8-862b-fcd7a794d245"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b19f6d52-c9be-4255-b62d-6f9aae11156a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5d87e5be-da7d-4575-8335-6ced823212ce",
"profile" : "parent"
}
}
}, {
"id" : "549dc7dd-645a-4873-a13b-81624d2f54d6",
"hostId" : "7a3aa8e6-3f11-4937-b3cc-6f9c29533de2",
"ownerIdentityId" : "a25f6fab-8a1c-4df5-bba7-4f2559739f36",
"createdBy" : "a25f6fab-8a1c-4df5-bba7-4f2559739f36",
"createdAt" : "2023-06-01T16:18:46.956316Z",
"updatedAt" : "2023-06-01T16:18:46.956316Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-396",
"domainName" : null,
"name" : "er-test-395",
"productVersion" : "7.3.36",
"networkId" : "ea9992eb-9852-47de-9bc2-7080bc45c93a",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/549dc7dd-645a-4873-a13b-81624d2f54d6"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7a3aa8e6-3f11-4937-b3cc-6f9c29533de2"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ea9992eb-9852-47de-9bc2-7080bc45c93a",
"profile" : "parent"
}
}
}, {
"id" : "56d4a6cc-1bb4-441a-972d-0ac3aa44fcf6",
"hostId" : "f7e61393-33c5-4b34-8228-363ed2025eca",
"ownerIdentityId" : "fb7a49e6-d347-4847-9802-9d5e5d685ab6",
"createdBy" : "fb7a49e6-d347-4847-9802-9d5e5d685ab6",
"createdAt" : "2023-06-01T16:18:44.434904Z",
"updatedAt" : "2023-06-01T16:18:44.434904Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-303",
"domainName" : null,
"name" : "er-test-302",
"productVersion" : "7.3.36",
"networkId" : "36e02a51-caa2-462d-be94-f1a0969fcf36",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/56d4a6cc-1bb4-441a-972d-0ac3aa44fcf6"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f7e61393-33c5-4b34-8228-363ed2025eca"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/36e02a51-caa2-462d-be94-f1a0969fcf36",
"profile" : "parent"
}
}
}, {
"id" : "58388322-662c-47ed-a344-7d3a68321adf",
"hostId" : "2b7f60eb-8ca8-4a48-aac7-1f5b0ccc9c03",
"ownerIdentityId" : "0e200f8c-1151-463a-83c8-1087ae8ee99f",
"createdBy" : "0e200f8c-1151-463a-83c8-1087ae8ee99f",
"createdAt" : "2023-06-01T16:18:31.523869Z",
"updatedAt" : "2023-06-01T16:18:31.523869Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-12",
"domainName" : null,
"name" : "er-test-11",
"productVersion" : "7.3.36",
"networkId" : "44e573b0-1367-4f7a-affa-e402741fcab7",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/58388322-662c-47ed-a344-7d3a68321adf"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2b7f60eb-8ca8-4a48-aac7-1f5b0ccc9c03"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/44e573b0-1367-4f7a-affa-e402741fcab7",
"profile" : "parent"
}
}
}, {
"id" : "585ca4bb-1115-4656-9cfb-ab9581eb2e0a",
"hostId" : "2543d6d6-2f42-4974-9969-7caa2f3c083f",
"ownerIdentityId" : "12735122-fbb1-4f1c-9688-cb43aa238180",
"createdBy" : "12735122-fbb1-4f1c-9688-cb43aa238180",
"createdAt" : "2023-06-01T16:18:48.286937Z",
"updatedAt" : "2023-06-01T16:18:48.286937Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-441",
"domainName" : null,
"name" : "er-test-440",
"productVersion" : "7.3.36",
"networkId" : "c55b72aa-6549-4973-8446-d92aad9dfa1e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/585ca4bb-1115-4656-9cfb-ab9581eb2e0a"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2543d6d6-2f42-4974-9969-7caa2f3c083f"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c55b72aa-6549-4973-8446-d92aad9dfa1e",
"profile" : "parent"
}
}
}, {
"id" : "5c220eb5-ab73-439c-acb3-8d68f476f7ab",
"hostId" : "33688ebc-03a7-40bf-a88b-cc382bb0d8a1",
"ownerIdentityId" : "b2abe463-9f11-4349-b68d-631e8804293e",
"createdBy" : "b2abe463-9f11-4349-b68d-631e8804293e",
"createdAt" : "2023-06-01T16:18:46.131742Z",
"updatedAt" : "2023-06-01T16:18:46.131742Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-354",
"domainName" : null,
"name" : "er-test-353",
"productVersion" : "7.3.36",
"networkId" : "73757dbc-a70f-43c5-b50d-c311682ca10e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5c220eb5-ab73-439c-acb3-8d68f476f7ab"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/33688ebc-03a7-40bf-a88b-cc382bb0d8a1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/73757dbc-a70f-43c5-b50d-c311682ca10e",
"profile" : "parent"
}
}
}, {
"id" : "5e35e3ac-e355-4137-b67d-1dd5150f0e87",
"hostId" : "0c35cfb3-e0a7-4f5c-85ab-196c128af6db",
"ownerIdentityId" : "aa6a9f71-1cb0-4547-a700-a8c42993594a",
"createdBy" : "aa6a9f71-1cb0-4547-a700-a8c42993594a",
"createdAt" : "2023-06-01T16:18:43.600680Z",
"updatedAt" : "2023-06-01T16:18:43.600680Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-258",
"domainName" : null,
"name" : "er-test-257",
"productVersion" : "7.3.36",
"networkId" : "0587933d-6203-41ba-9f70-b6a5c3df2eb4",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5e35e3ac-e355-4137-b67d-1dd5150f0e87"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0c35cfb3-e0a7-4f5c-85ab-196c128af6db"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0587933d-6203-41ba-9f70-b6a5c3df2eb4",
"profile" : "parent"
}
}
}, {
"id" : "5fb4bd5e-7a42-48ea-8493-4b8254806ae3",
"hostId" : "3899940a-c80a-400d-943d-3331d3f792e9",
"ownerIdentityId" : "75ad9047-63ab-457d-a1fb-13ea3a95098d",
"createdBy" : "75ad9047-63ab-457d-a1fb-13ea3a95098d",
"createdAt" : "2023-06-01T16:18:46.705987Z",
"updatedAt" : "2023-06-01T16:18:46.705987Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-372",
"domainName" : null,
"name" : "er-test-371",
"productVersion" : "7.3.36",
"networkId" : "25a93ae7-c302-487f-8c90-65a3a479e7c5",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/5fb4bd5e-7a42-48ea-8493-4b8254806ae3"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3899940a-c80a-400d-943d-3331d3f792e9"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/25a93ae7-c302-487f-8c90-65a3a479e7c5",
"profile" : "parent"
}
}
}, {
"id" : "602d638a-92ec-4516-8728-8b93a83ccdf7",
"hostId" : "07f75e0d-4802-4c89-8979-ddbf1d6b7506",
"ownerIdentityId" : "9e138067-31d6-472f-80ce-410ce17c14e8",
"createdBy" : "9e138067-31d6-472f-80ce-410ce17c14e8",
"createdAt" : "2023-06-01T16:18:42.134531Z",
"updatedAt" : "2023-06-01T16:18:42.134531Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-207",
"domainName" : null,
"name" : "er-test-206",
"productVersion" : "7.3.36",
"networkId" : "dfe4a5d7-94f7-46f4-8713-3e9b92bf7128",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/602d638a-92ec-4516-8728-8b93a83ccdf7"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/07f75e0d-4802-4c89-8979-ddbf1d6b7506"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dfe4a5d7-94f7-46f4-8713-3e9b92bf7128",
"profile" : "parent"
}
}
}, {
"id" : "646c8d00-ca07-4cd8-aa62-3fc4e66fbe61",
"hostId" : "e1140d00-8382-4fc2-8937-7a2aca11a448",
"ownerIdentityId" : "68459123-6fd6-412a-b5ef-b90df0ca3859",
"createdBy" : "68459123-6fd6-412a-b5ef-b90df0ca3859",
"createdAt" : "2023-06-01T16:18:36.864824Z",
"updatedAt" : "2023-06-01T16:18:36.864824Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-78",
"domainName" : null,
"name" : "er-test-77",
"productVersion" : "7.3.36",
"networkId" : "c2f13f8d-8b5d-430e-9688-05ec0d67574f",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/646c8d00-ca07-4cd8-aa62-3fc4e66fbe61"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e1140d00-8382-4fc2-8937-7a2aca11a448"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c2f13f8d-8b5d-430e-9688-05ec0d67574f",
"profile" : "parent"
}
}
}, {
"id" : "654b5423-072f-41d2-8f18-a43909ab00c9",
"hostId" : "97b652a1-c462-49bb-a35d-eaab48c614df",
"ownerIdentityId" : "c6c7c0f5-4bbd-4882-b1d1-7f1672062d37",
"createdBy" : "c6c7c0f5-4bbd-4882-b1d1-7f1672062d37",
"createdAt" : "2023-06-01T16:18:47.202107Z",
"updatedAt" : "2023-06-01T16:18:47.202107Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-414",
"domainName" : null,
"name" : "er-test-413",
"productVersion" : "7.3.36",
"networkId" : "3acf5c52-9ec2-41a9-8262-b02208ab9178",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/654b5423-072f-41d2-8f18-a43909ab00c9"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/97b652a1-c462-49bb-a35d-eaab48c614df"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3acf5c52-9ec2-41a9-8262-b02208ab9178",
"profile" : "parent"
}
}
}, {
"id" : "6611cc20-dd37-42a3-8b5e-1caadc43831b",
"hostId" : "2030d22d-3a06-4796-bb8f-f870d8bc5040",
"ownerIdentityId" : "6c1711a2-6b40-43f9-964b-d615bf5d31ca",
"createdBy" : "6c1711a2-6b40-43f9-964b-d615bf5d31ca",
"createdAt" : "2023-06-01T16:18:35.635849Z",
"updatedAt" : "2023-06-01T16:18:35.635849Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-48",
"domainName" : null,
"name" : "er-test-47",
"productVersion" : "7.3.36",
"networkId" : "938a8eee-ac4f-4f56-8ef7-61ed515e99d5",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6611cc20-dd37-42a3-8b5e-1caadc43831b"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2030d22d-3a06-4796-bb8f-f870d8bc5040"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/938a8eee-ac4f-4f56-8ef7-61ed515e99d5",
"profile" : "parent"
}
}
}, {
"id" : "67acd82d-ae53-4048-8872-973ead3b010b",
"hostId" : "3481d78a-f7b2-425b-87b3-3a6ae0e73435",
"ownerIdentityId" : "1bef7a53-62bc-4c93-8f9c-b6d89084cb96",
"createdBy" : "1bef7a53-62bc-4c93-8f9c-b6d89084cb96",
"createdAt" : "2023-06-01T16:18:48.306831Z",
"updatedAt" : "2023-06-01T16:18:48.306831Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-447",
"domainName" : null,
"name" : "er-test-446",
"productVersion" : "7.3.36",
"networkId" : "c55b72aa-6549-4973-8446-d92aad9dfa1e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/67acd82d-ae53-4048-8872-973ead3b010b"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3481d78a-f7b2-425b-87b3-3a6ae0e73435"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c55b72aa-6549-4973-8446-d92aad9dfa1e",
"profile" : "parent"
}
}
}, {
"id" : "6ad76197-a1f6-4de5-8e49-0c87aecda78a",
"hostId" : "8a44af13-c92f-45c0-a7b2-5ef796fbd29b",
"ownerIdentityId" : "ff591bab-19fa-4dde-b08b-ae6576eddc91",
"createdBy" : "ff591bab-19fa-4dde-b08b-ae6576eddc91",
"createdAt" : "2023-06-01T16:18:38.475861Z",
"updatedAt" : "2023-06-01T16:18:38.475861Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-96",
"domainName" : null,
"name" : "er-test-95",
"productVersion" : "7.3.36",
"networkId" : "d0b12fa0-1086-4757-945c-a2f88661303f",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6ad76197-a1f6-4de5-8e49-0c87aecda78a"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8a44af13-c92f-45c0-a7b2-5ef796fbd29b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d0b12fa0-1086-4757-945c-a2f88661303f",
"profile" : "parent"
}
}
}, {
"id" : "6bd6cd28-8d02-4a7e-935d-b13c532401a6",
"hostId" : "d5bf6c5c-463f-45fa-ba55-fdfa18347a90",
"ownerIdentityId" : "bd7f3494-e71a-457e-9459-bf5205d21b4a",
"createdBy" : "bd7f3494-e71a-457e-9459-bf5205d21b4a",
"createdAt" : "2023-06-01T16:18:45.960538Z",
"updatedAt" : "2023-06-01T16:18:45.960538Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-333",
"domainName" : null,
"name" : "er-test-332",
"productVersion" : "7.3.36",
"networkId" : "9a8f0fd7-04d0-47a4-b553-3e255fddbfbf",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6bd6cd28-8d02-4a7e-935d-b13c532401a6"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d5bf6c5c-463f-45fa-ba55-fdfa18347a90"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9a8f0fd7-04d0-47a4-b553-3e255fddbfbf",
"profile" : "parent"
}
}
}, {
"id" : "6dbc28a4-632b-449b-a249-4b1c3b908f17",
"hostId" : "9b132f34-36de-47a2-ae8f-1ad1a8016801",
"ownerIdentityId" : "4597c30e-f1c1-4264-a28e-8be398a0a838",
"createdBy" : "4597c30e-f1c1-4264-a28e-8be398a0a838",
"createdAt" : "2023-06-01T16:18:31.518475Z",
"updatedAt" : "2023-06-01T16:18:31.518475Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-9",
"domainName" : null,
"name" : "er-test-8",
"productVersion" : "7.3.36",
"networkId" : "44e573b0-1367-4f7a-affa-e402741fcab7",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/6dbc28a4-632b-449b-a249-4b1c3b908f17"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9b132f34-36de-47a2-ae8f-1ad1a8016801"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/44e573b0-1367-4f7a-affa-e402741fcab7",
"profile" : "parent"
}
}
}, {
"id" : "70a14206-4407-472d-a781-d2f982211653",
"hostId" : "9841b1d8-371c-4a97-bf1e-4146605d63e1",
"ownerIdentityId" : "dcdb7c6b-d035-414d-9e53-3610751f4a3e",
"createdBy" : "dcdb7c6b-d035-414d-9e53-3610751f4a3e",
"createdAt" : "2023-06-01T16:18:48.325999Z",
"updatedAt" : "2023-06-01T16:18:48.325999Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-450",
"domainName" : null,
"name" : "er-test-449",
"productVersion" : "7.3.36",
"networkId" : "c55b72aa-6549-4973-8446-d92aad9dfa1e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/70a14206-4407-472d-a781-d2f982211653"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/9841b1d8-371c-4a97-bf1e-4146605d63e1"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c55b72aa-6549-4973-8446-d92aad9dfa1e",
"profile" : "parent"
}
}
}, {
"id" : "72086e40-f659-4894-805d-a638848b2ce7",
"hostId" : "47864d79-a3f3-47e9-aae9-3c2fcdab4027",
"ownerIdentityId" : "64b2f737-8ac4-4c01-8552-ed4527a4f035",
"createdBy" : "64b2f737-8ac4-4c01-8552-ed4527a4f035",
"createdAt" : "2023-06-01T16:18:39.972127Z",
"updatedAt" : "2023-06-01T16:18:39.972127Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-135",
"domainName" : null,
"name" : "er-test-134",
"productVersion" : "7.3.36",
"networkId" : "490a4bcb-f4c8-4598-96fc-eff3f00df443",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/72086e40-f659-4894-805d-a638848b2ce7"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/47864d79-a3f3-47e9-aae9-3c2fcdab4027"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/490a4bcb-f4c8-4598-96fc-eff3f00df443",
"profile" : "parent"
}
}
}, {
"id" : "74e150ce-a9fa-4b4a-84d5-72611386845c",
"hostId" : "59aae80c-1179-44e7-838b-c9766b72870d",
"ownerIdentityId" : "c481da7a-b184-4469-90d9-23c214c18d57",
"createdBy" : "c481da7a-b184-4469-90d9-23c214c18d57",
"createdAt" : "2023-06-01T16:18:48.289405Z",
"updatedAt" : "2023-06-01T16:18:48.289405Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-444",
"domainName" : null,
"name" : "er-test-443",
"productVersion" : "7.3.36",
"networkId" : "c55b72aa-6549-4973-8446-d92aad9dfa1e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/74e150ce-a9fa-4b4a-84d5-72611386845c"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/59aae80c-1179-44e7-838b-c9766b72870d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c55b72aa-6549-4973-8446-d92aad9dfa1e",
"profile" : "parent"
}
}
}, {
"id" : "793912b7-90d8-480c-9085-492943b00931",
"hostId" : "126a8f6f-779a-4312-b0a9-e4dd8eb6dc8c",
"ownerIdentityId" : "15c40497-ce82-4155-a127-9214b2890d73",
"createdBy" : "15c40497-ce82-4155-a127-9214b2890d73",
"createdAt" : "2023-06-01T16:18:47.739324Z",
"updatedAt" : "2023-06-01T16:18:47.970045Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-423",
"domainName" : null,
"name" : "er-test-422",
"productVersion" : "7.3.36",
"networkId" : "5d87e5be-da7d-4575-8335-6ced823212ce",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/793912b7-90d8-480c-9085-492943b00931"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/126a8f6f-779a-4312-b0a9-e4dd8eb6dc8c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5d87e5be-da7d-4575-8335-6ced823212ce",
"profile" : "parent"
}
}
}, {
"id" : "7d427c88-ad17-4191-9302-765b217beefa",
"hostId" : "5d757fae-1cff-45e3-adab-f03e0fd5605c",
"ownerIdentityId" : "f5a0fb96-9556-4bbc-aef7-4b553a690398",
"createdBy" : "f5a0fb96-9556-4bbc-aef7-4b553a690398",
"createdAt" : "2023-06-01T16:18:36.052007Z",
"updatedAt" : "2023-06-01T16:18:36.391846Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-60",
"domainName" : null,
"name" : "er-test-59",
"productVersion" : "7.3.36",
"networkId" : "fe739808-230c-4df5-8585-244008c83034",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7d427c88-ad17-4191-9302-765b217beefa"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5d757fae-1cff-45e3-adab-f03e0fd5605c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fe739808-230c-4df5-8585-244008c83034",
"profile" : "parent"
}
}
}, {
"id" : "7fce224a-41d4-4ade-8707-233a50add82a",
"hostId" : "a6b0f76e-cc08-422b-825a-68022d90049f",
"ownerIdentityId" : "f98e3dcc-0642-463f-8d6d-4059b7c3ec26",
"createdBy" : "f98e3dcc-0642-463f-8d6d-4059b7c3ec26",
"createdAt" : "2023-06-01T16:18:46.726117Z",
"updatedAt" : "2023-06-01T16:18:46.726117Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-378",
"domainName" : null,
"name" : "er-test-377",
"productVersion" : "7.3.36",
"networkId" : "25a93ae7-c302-487f-8c90-65a3a479e7c5",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/7fce224a-41d4-4ade-8707-233a50add82a"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a6b0f76e-cc08-422b-825a-68022d90049f"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/25a93ae7-c302-487f-8c90-65a3a479e7c5",
"profile" : "parent"
}
}
}, {
"id" : "80e1f860-22d2-448a-9c63-02580e2d11f5",
"hostId" : "ed240268-93b7-4e91-9718-c93629079746",
"ownerIdentityId" : "d2ca3c6d-ac22-46ac-bb4a-e06c495414b1",
"createdBy" : "d2ca3c6d-ac22-46ac-bb4a-e06c495414b1",
"createdAt" : "2023-06-01T16:18:46.126936Z",
"updatedAt" : "2023-06-01T16:18:46.126936Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-351",
"domainName" : null,
"name" : "er-test-350",
"productVersion" : "7.3.36",
"networkId" : "73757dbc-a70f-43c5-b50d-c311682ca10e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/80e1f860-22d2-448a-9c63-02580e2d11f5"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ed240268-93b7-4e91-9718-c93629079746"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/73757dbc-a70f-43c5-b50d-c311682ca10e",
"profile" : "parent"
}
}
}, {
"id" : "8190114a-a26d-4e64-939b-6699e5f07285",
"hostId" : "a34b4438-69b9-4312-b4e4-3eb3c5616594",
"ownerIdentityId" : "890b5774-5891-4451-99dd-8c6788340194",
"createdBy" : "890b5774-5891-4451-99dd-8c6788340194",
"createdAt" : "2023-06-01T16:18:40.358264Z",
"updatedAt" : "2023-06-01T16:18:40.358264Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-159",
"domainName" : null,
"name" : "er-test-158",
"productVersion" : "7.3.36",
"networkId" : "118eb5f1-5fef-4375-9de8-8d591cc30040",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8190114a-a26d-4e64-939b-6699e5f07285"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a34b4438-69b9-4312-b4e4-3eb3c5616594"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/118eb5f1-5fef-4375-9de8-8d591cc30040",
"profile" : "parent"
}
}
}, {
"id" : "82773d33-0da7-402c-b18b-c2faf1caf4b8",
"hostId" : "0559e6b6-1188-4245-a98d-5f2d5064f0b4",
"ownerIdentityId" : "f2cc0b88-c284-408c-b8ec-98920c4ef62a",
"createdBy" : "f2cc0b88-c284-408c-b8ec-98920c4ef62a",
"createdAt" : "2023-06-01T16:18:45.118995Z",
"updatedAt" : "2023-06-01T16:18:45.118995Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-315",
"domainName" : null,
"name" : "er-test-314",
"productVersion" : "7.3.36",
"networkId" : "8b7bdd2d-9119-406a-b2f6-63659927438c",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/82773d33-0da7-402c-b18b-c2faf1caf4b8"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/0559e6b6-1188-4245-a98d-5f2d5064f0b4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8b7bdd2d-9119-406a-b2f6-63659927438c",
"profile" : "parent"
}
}
}, {
"id" : "8415a177-cc12-4d4c-9e37-41d2112403c6",
"hostId" : "1b08dc58-761d-46f9-ac5c-e4ca958fde76",
"ownerIdentityId" : "57f0d8fd-b2f5-4fd0-9ec0-48afda2b124f",
"createdBy" : "57f0d8fd-b2f5-4fd0-9ec0-48afda2b124f",
"createdAt" : "2023-06-01T16:18:42.495429Z",
"updatedAt" : "2023-06-01T16:18:42.495429Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-216",
"domainName" : null,
"name" : "er-test-215",
"productVersion" : "7.3.36",
"networkId" : "e4855948-13df-460b-a0ef-019b216e9193",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8415a177-cc12-4d4c-9e37-41d2112403c6"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/1b08dc58-761d-46f9-ac5c-e4ca958fde76"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e4855948-13df-460b-a0ef-019b216e9193",
"profile" : "parent"
}
}
}, {
"id" : "8d00b9b5-f771-4333-bde4-af9731934c7e",
"hostId" : "aaf045bf-18ac-4f50-a1b6-9d38a723c3c8",
"ownerIdentityId" : "12841765-0095-4bfd-bfcf-ba07aaa7ec9f",
"createdBy" : "12841765-0095-4bfd-bfcf-ba07aaa7ec9f",
"createdAt" : "2023-06-01T16:18:43.581841Z",
"updatedAt" : "2023-06-01T16:18:43.581841Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-255",
"domainName" : null,
"name" : "er-test-254",
"productVersion" : "7.3.36",
"networkId" : "0587933d-6203-41ba-9f70-b6a5c3df2eb4",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8d00b9b5-f771-4333-bde4-af9731934c7e"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/aaf045bf-18ac-4f50-a1b6-9d38a723c3c8"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0587933d-6203-41ba-9f70-b6a5c3df2eb4",
"profile" : "parent"
}
}
}, {
"id" : "8e4c5153-6048-460e-a119-a94c2d6e7969",
"hostId" : "e17b2a67-d5b8-45e4-bb35-bbf847b06a2b",
"ownerIdentityId" : "c166e81e-db77-445a-ac2b-f370aba1b330",
"createdBy" : "c166e81e-db77-445a-ac2b-f370aba1b330",
"createdAt" : "2023-06-01T16:18:48.938519Z",
"updatedAt" : "2023-06-01T16:18:48.938519Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-490",
"domainName" : null,
"name" : "er-test-489",
"productVersion" : "7.3.36",
"networkId" : "e82de4d8-ab53-4ec6-a4d8-387538df9e91",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8e4c5153-6048-460e-a119-a94c2d6e7969"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e17b2a67-d5b8-45e4-bb35-bbf847b06a2b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e82de4d8-ab53-4ec6-a4d8-387538df9e91",
"profile" : "parent"
}
}
}, {
"id" : "90d4c66d-9969-4b38-86c9-b1a51c84da52",
"hostId" : "e7815c83-dd1c-484c-b972-27f147e15886",
"ownerIdentityId" : "c54ae69f-1244-47b8-b252-bf899621874c",
"createdBy" : "c54ae69f-1244-47b8-b252-bf899621874c",
"createdAt" : "2023-06-01T16:18:40.615055Z",
"updatedAt" : "2023-06-01T16:18:40.692895Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "56b05f3c-e719-4713-88ab-aad9fdc5e659",
"domainName" : null,
"name" : "edgerouter-172",
"productVersion" : "7.3.36",
"networkId" : "118eb5f1-5fef-4375-9de8-8d591cc30040",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/90d4c66d-9969-4b38-86c9-b1a51c84da52"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e7815c83-dd1c-484c-b972-27f147e15886"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/118eb5f1-5fef-4375-9de8-8d591cc30040",
"profile" : "parent"
}
}
}, {
"id" : "935ee804-62ee-46c7-b9b3-bcfa1663e97f",
"hostId" : "e713ac25-f2bf-4b74-86d9-b691e62501c6",
"ownerIdentityId" : "e03cd12c-a61a-4b1d-ae2e-17955645a292",
"createdBy" : "e03cd12c-a61a-4b1d-ae2e-17955645a292",
"createdAt" : "2023-06-01T16:18:34.970689Z",
"updatedAt" : "2023-06-01T16:18:35.212305Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-24",
"domainName" : null,
"name" : "er-test-23",
"productVersion" : "7.3.36",
"networkId" : "07e41566-52c0-4571-9fb9-64bd06ccf4a6",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/935ee804-62ee-46c7-b9b3-bcfa1663e97f"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e713ac25-f2bf-4b74-86d9-b691e62501c6"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/07e41566-52c0-4571-9fb9-64bd06ccf4a6",
"profile" : "parent"
}
}
}, {
"id" : "9747ad76-9c8b-43d4-948e-762a94a4fded",
"hostId" : "1fd4f7f8-28f0-49c5-8a9c-7dbe255d07a3",
"ownerIdentityId" : "cb63b66f-7d5e-4e26-a61e-3048b2907f06",
"createdBy" : "cb63b66f-7d5e-4e26-a61e-3048b2907f06",
"createdAt" : "2023-06-01T16:18:43.567540Z",
"updatedAt" : "2023-06-01T16:18:43.567540Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-252",
"domainName" : null,
"name" : "er-test-251",
"productVersion" : "7.3.36",
"networkId" : "0587933d-6203-41ba-9f70-b6a5c3df2eb4",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9747ad76-9c8b-43d4-948e-762a94a4fded"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/1fd4f7f8-28f0-49c5-8a9c-7dbe255d07a3"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0587933d-6203-41ba-9f70-b6a5c3df2eb4",
"profile" : "parent"
}
}
}, {
"id" : "9c2a0e58-bb7c-49e9-8523-8a9eb5f871a4",
"hostId" : "e0a59844-2778-4672-b225-339c4e8d28f3",
"ownerIdentityId" : "f748fae0-536a-4967-9ac5-4916ab44be4b",
"createdBy" : "f748fae0-536a-4967-9ac5-4916ab44be4b",
"createdAt" : "2023-06-01T16:18:48.738450Z",
"updatedAt" : "2023-06-01T16:18:48.738450Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-475",
"domainName" : null,
"name" : "er-test-474",
"productVersion" : "7.3.36",
"networkId" : "4caf7312-f993-4fd2-b389-597845e7ea34",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9c2a0e58-bb7c-49e9-8523-8a9eb5f871a4"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e0a59844-2778-4672-b225-339c4e8d28f3"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4caf7312-f993-4fd2-b389-597845e7ea34",
"profile" : "parent"
}
}
}, {
"id" : "9cae9f7f-fa9e-4dbc-bac6-fab13b46c036",
"hostId" : "856751cc-13df-4a78-bb44-5c3519364367",
"ownerIdentityId" : "0308c4f0-3b4e-4092-bf69-19b5f2a50644",
"createdBy" : "0308c4f0-3b4e-4092-bf69-19b5f2a50644",
"createdAt" : "2023-06-01T16:18:31.592422Z",
"updatedAt" : "2023-06-01T16:18:31.592422Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-15",
"domainName" : null,
"name" : "er-test-14",
"productVersion" : "7.3.36",
"networkId" : "44e573b0-1367-4f7a-affa-e402741fcab7",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9cae9f7f-fa9e-4dbc-bac6-fab13b46c036"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/856751cc-13df-4a78-bb44-5c3519364367"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/44e573b0-1367-4f7a-affa-e402741fcab7",
"profile" : "parent"
}
}
}, {
"id" : "9dca0f2e-9937-475e-8664-f5a9643776cb",
"hostId" : "dc141b0e-604c-4ac6-b637-6a2f73c2a9a7",
"ownerIdentityId" : "31bf6a05-1f4a-4bad-9035-9df876faf25b",
"createdBy" : "31bf6a05-1f4a-4bad-9035-9df876faf25b",
"createdAt" : "2023-06-01T16:18:48.727511Z",
"updatedAt" : "2023-06-01T16:18:48.820650Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-469",
"domainName" : null,
"name" : "er-test-468",
"productVersion" : "7.3.36",
"networkId" : "4caf7312-f993-4fd2-b389-597845e7ea34",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/9dca0f2e-9937-475e-8664-f5a9643776cb"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/dc141b0e-604c-4ac6-b637-6a2f73c2a9a7"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4caf7312-f993-4fd2-b389-597845e7ea34",
"profile" : "parent"
}
}
}, {
"id" : "a2665305-13cb-4ab3-a879-0293750d532a",
"hostId" : "5400fe67-a190-42b6-8aab-4a5ef4694d44",
"ownerIdentityId" : "925e741f-2f0d-43b8-addf-2b3d9d859463",
"createdBy" : "925e741f-2f0d-43b8-addf-2b3d9d859463",
"createdAt" : "2023-06-01T16:18:41.148731Z",
"updatedAt" : "2023-06-01T16:18:41.148731Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-183",
"domainName" : null,
"name" : "er-test-182",
"productVersion" : "7.3.36",
"networkId" : "dc6ada1c-550c-413d-945a-db4a0b4da18e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a2665305-13cb-4ab3-a879-0293750d532a"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/5400fe67-a190-42b6-8aab-4a5ef4694d44"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dc6ada1c-550c-413d-945a-db4a0b4da18e",
"profile" : "parent"
}
}
}, {
"id" : "a9daf37d-6ab2-4161-ae32-35c0eba755ca",
"hostId" : "563478a5-0b48-4ff5-a7ae-d4ffe7aa9f03",
"ownerIdentityId" : "dee0a38a-4aa3-4736-8967-56c301c15850",
"createdBy" : "dee0a38a-4aa3-4736-8967-56c301c15850",
"createdAt" : "2023-06-01T16:18:38.786221Z",
"updatedAt" : "2023-06-01T16:18:38.786221Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-114",
"domainName" : null,
"name" : "er-test-113",
"productVersion" : "7.3.36",
"networkId" : "b09a8f9b-4c83-402a-bea0-4371f39a722e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/a9daf37d-6ab2-4161-ae32-35c0eba755ca"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/563478a5-0b48-4ff5-a7ae-d4ffe7aa9f03"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b09a8f9b-4c83-402a-bea0-4371f39a722e",
"profile" : "parent"
}
}
}, {
"id" : "b0eebc28-3922-4112-939f-8df803e6a770",
"hostId" : "adc272f1-8e33-443e-8910-10652a52c12f",
"ownerIdentityId" : "a7e9d7de-1218-427d-a789-0320ce365394",
"createdBy" : "a7e9d7de-1218-427d-a789-0320ce365394",
"createdAt" : "2023-06-01T16:18:42.080646Z",
"updatedAt" : "2023-06-01T16:18:42.080646Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-198",
"domainName" : null,
"name" : "er-test-197",
"productVersion" : "7.3.36",
"networkId" : "dfe4a5d7-94f7-46f4-8713-3e9b92bf7128",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b0eebc28-3922-4112-939f-8df803e6a770"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/adc272f1-8e33-443e-8910-10652a52c12f"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dfe4a5d7-94f7-46f4-8713-3e9b92bf7128",
"profile" : "parent"
}
}
}, {
"id" : "b2d1fc48-7e92-4639-ad70-168874246940",
"hostId" : null,
"ownerIdentityId" : "0e15a2c7-b669-4956-937e-fbd74d795ecb",
"createdBy" : "0e15a2c7-b669-4956-937e-fbd74d795ecb",
"createdAt" : "2023-06-01T16:18:44.597626Z",
"updatedAt" : "2023-06-01T16:18:44.766029Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "Ewew94gTliW1U9CuZqHq0",
"domainName" : null,
"name" : "Test edge router 1685636324",
"productVersion" : "7.3.36",
"networkId" : "36e02a51-caa2-462d-be94-f1a0969fcf36",
"jwt" : null,
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "ERROR",
"softwareDeploymentStateId" : null,
"provider" : null,
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b2d1fc48-7e92-4639-ad70-168874246940"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/36e02a51-caa2-462d-be94-f1a0969fcf36",
"profile" : "parent"
}
}
}, {
"id" : "b36d5019-110f-46e7-a161-68f26895b8d7",
"hostId" : "445d3088-a1ce-4c84-aca7-9dbc8c70e8dd",
"ownerIdentityId" : "6ad95a19-a8f3-4348-8110-21fbf6146b8a",
"createdBy" : "6ad95a19-a8f3-4348-8110-21fbf6146b8a",
"createdAt" : "2023-06-01T16:18:41.127565Z",
"updatedAt" : "2023-06-01T16:18:41.544954Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-180",
"domainName" : null,
"name" : "er-test-179",
"productVersion" : "7.3.36",
"networkId" : "dc6ada1c-550c-413d-945a-db4a0b4da18e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b36d5019-110f-46e7-a161-68f26895b8d7"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/445d3088-a1ce-4c84-aca7-9dbc8c70e8dd"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dc6ada1c-550c-413d-945a-db4a0b4da18e",
"profile" : "parent"
}
}
}, {
"id" : "b6e1f597-2fa0-4816-b7ab-1d63c19e9b27",
"hostId" : "8f77c777-2aa6-49fa-97a0-cd9c1ad7c24c",
"ownerIdentityId" : "215aa4a4-2d74-47ac-ba10-161c783c6716",
"createdBy" : "215aa4a4-2d74-47ac-ba10-161c783c6716",
"createdAt" : "2023-06-01T16:18:46.952104Z",
"updatedAt" : "2023-06-01T16:18:46.952104Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-393",
"domainName" : null,
"name" : "er-test-392",
"productVersion" : "7.3.36",
"networkId" : "ea9992eb-9852-47de-9bc2-7080bc45c93a",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b6e1f597-2fa0-4816-b7ab-1d63c19e9b27"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8f77c777-2aa6-49fa-97a0-cd9c1ad7c24c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ea9992eb-9852-47de-9bc2-7080bc45c93a",
"profile" : "parent"
}
}
}, {
"id" : "bb8f358b-4b20-4076-bba2-f85f2a5b27a0",
"hostId" : "75ce0690-249b-453c-9589-73da3ab06d59",
"ownerIdentityId" : "8038594d-9df1-4a3c-beb9-34b875b11f19",
"createdBy" : "8038594d-9df1-4a3c-beb9-34b875b11f19",
"createdAt" : "2023-06-01T16:18:42.999800Z",
"updatedAt" : "2023-06-01T16:18:42.999800Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-234",
"domainName" : null,
"name" : "er-test-233",
"productVersion" : "7.3.36",
"networkId" : "bc682a95-cdb8-4a1c-a3a6-e39b1e6a0dc9",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bb8f358b-4b20-4076-bba2-f85f2a5b27a0"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/75ce0690-249b-453c-9589-73da3ab06d59"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bc682a95-cdb8-4a1c-a3a6-e39b1e6a0dc9",
"profile" : "parent"
}
}
}, {
"id" : "bbaf6761-3a96-45ac-aee4-384e2abb07a8",
"hostId" : "a41fcfa8-bbfe-447f-9c8c-7e7a0e7e5690",
"ownerIdentityId" : "fc0f440b-5d68-4873-9987-83e7246ff458",
"createdBy" : "fc0f440b-5d68-4873-9987-83e7246ff458",
"createdAt" : "2023-06-01T16:18:45.316567Z",
"updatedAt" : "2023-06-01T16:18:45.567202Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "FPME2eZquEy4axNAB2Xwk",
"domainName" : "5a2afbb4-0cd5-462d-b66d-41965d68bb7e.sandbox.netfoundry.io",
"name" : "Test edge router 1685636325",
"productVersion" : "7.3.36",
"networkId" : "8b7bdd2d-9119-406a-b2f6-63659927438c",
"jwt" : null,
"linkListener" : false,
"tunnelerEnabled" : false,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "ERROR",
"softwareDeploymentStateId" : null,
"provider" : "AWS",
"region" : "us-east-1",
"hostSize" : "small",
"attributes" : [ ],
"registration" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bbaf6761-3a96-45ac-aee4-384e2abb07a8"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a41fcfa8-bbfe-447f-9c8c-7e7a0e7e5690"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8b7bdd2d-9119-406a-b2f6-63659927438c",
"profile" : "parent"
}
}
}, {
"id" : "bedefabe-7594-4719-952f-4b1e44fca6ac",
"hostId" : "386df659-8538-4be2-87ed-71555bdd8256",
"ownerIdentityId" : "2d855bc6-3a3d-4346-9b75-930f37aa22b9",
"createdBy" : "2d855bc6-3a3d-4346-9b75-930f37aa22b9",
"createdAt" : "2023-06-01T16:18:38.504377Z",
"updatedAt" : "2023-06-01T16:18:38.504377Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-99",
"domainName" : null,
"name" : "er-test-98",
"productVersion" : "7.3.36",
"networkId" : "d0b12fa0-1086-4757-945c-a2f88661303f",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bedefabe-7594-4719-952f-4b1e44fca6ac"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/386df659-8538-4be2-87ed-71555bdd8256"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d0b12fa0-1086-4757-945c-a2f88661303f",
"profile" : "parent"
}
}
}, {
"id" : "bfa06248-f256-4471-9dc8-293fef92bd58",
"hostId" : "bc20e893-de88-40f0-a166-e3337a5f1c5a",
"ownerIdentityId" : "d0ccbaff-0227-49c5-843e-17049b890f84",
"createdBy" : "d0ccbaff-0227-49c5-843e-17049b890f84",
"createdAt" : "2023-06-01T16:18:49.299069Z",
"updatedAt" : "2023-06-01T16:18:49.299069Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-511",
"domainName" : null,
"name" : "er-test-510",
"productVersion" : "7.3.36",
"networkId" : "ec3559bc-3ce9-4322-baab-f9faf78afeaf",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bfa06248-f256-4471-9dc8-293fef92bd58"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bc20e893-de88-40f0-a166-e3337a5f1c5a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec3559bc-3ce9-4322-baab-f9faf78afeaf",
"profile" : "parent"
}
}
}, {
"id" : "bfc59df0-f626-45e1-9ff9-5eb5de20afd7",
"hostId" : "960b85d6-98d0-40d4-917d-d278b87bb9b5",
"ownerIdentityId" : "5f256ad0-dc5d-4270-8fab-7867016b4302",
"createdBy" : "5f256ad0-dc5d-4270-8fab-7867016b4302",
"createdAt" : "2023-06-01T16:18:44.422502Z",
"updatedAt" : "2023-06-01T16:18:44.422502Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-300",
"domainName" : null,
"name" : "er-test-299",
"productVersion" : "7.3.36",
"networkId" : "36e02a51-caa2-462d-be94-f1a0969fcf36",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/bfc59df0-f626-45e1-9ff9-5eb5de20afd7"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/960b85d6-98d0-40d4-917d-d278b87bb9b5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/36e02a51-caa2-462d-be94-f1a0969fcf36",
"profile" : "parent"
}
}
}, {
"id" : "c03e158b-38a7-4804-9cda-cbd53bc1b439",
"hostId" : "385d23a5-80a1-430e-8c87-982aeb9739d4",
"ownerIdentityId" : "5b7049f9-0ad4-4250-98b2-b947248761f6",
"createdBy" : "5b7049f9-0ad4-4250-98b2-b947248761f6",
"createdAt" : "2023-06-01T16:18:46.134518Z",
"updatedAt" : "2023-06-01T16:18:46.134518Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-357",
"domainName" : null,
"name" : "er-test-356",
"productVersion" : "7.3.36",
"networkId" : "73757dbc-a70f-43c5-b50d-c311682ca10e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c03e158b-38a7-4804-9cda-cbd53bc1b439"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/385d23a5-80a1-430e-8c87-982aeb9739d4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/73757dbc-a70f-43c5-b50d-c311682ca10e",
"profile" : "parent"
}
}
}, {
"id" : "c0a2b956-b800-4fea-8305-667bcc10b6a7",
"hostId" : "d4822880-57d4-441c-b65f-daf85b45e2e9",
"ownerIdentityId" : "6197cdf4-e7e3-4026-8dd1-cba791f83c5f",
"createdBy" : "6197cdf4-e7e3-4026-8dd1-cba791f83c5f",
"createdAt" : "2023-06-01T16:18:42.117487Z",
"updatedAt" : "2023-06-01T16:18:42.117487Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-204",
"domainName" : null,
"name" : "er-test-203",
"productVersion" : "7.3.36",
"networkId" : "dfe4a5d7-94f7-46f4-8713-3e9b92bf7128",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c0a2b956-b800-4fea-8305-667bcc10b6a7"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d4822880-57d4-441c-b65f-daf85b45e2e9"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dfe4a5d7-94f7-46f4-8713-3e9b92bf7128",
"profile" : "parent"
}
}
}, {
"id" : "c14bde24-4674-4098-bf31-5500b8ae6d42",
"hostId" : "b3216503-b3d0-4e70-a52f-54e69880716a",
"ownerIdentityId" : "98fda1fc-4874-4afc-b515-9b56a2df5e6e",
"createdBy" : "98fda1fc-4874-4afc-b515-9b56a2df5e6e",
"createdAt" : "2023-06-01T16:18:47.187245Z",
"updatedAt" : "2023-06-01T16:18:47.187245Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-411",
"domainName" : null,
"name" : "er-test-410",
"productVersion" : "7.3.36",
"networkId" : "3acf5c52-9ec2-41a9-8262-b02208ab9178",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c14bde24-4674-4098-bf31-5500b8ae6d42"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/b3216503-b3d0-4e70-a52f-54e69880716a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3acf5c52-9ec2-41a9-8262-b02208ab9178",
"profile" : "parent"
}
}
}, {
"id" : "c1cef956-59ac-43fa-83d6-05d4476db651",
"hostId" : "43d23bfe-5802-4617-923f-584528696d49",
"ownerIdentityId" : "edbffef4-1370-4f4c-9843-647371fc5143",
"createdBy" : "edbffef4-1370-4f4c-9843-647371fc5143",
"createdAt" : "2023-06-01T16:18:47.168452Z",
"updatedAt" : "2023-06-01T16:18:47.168452Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-405",
"domainName" : null,
"name" : "er-test-404",
"productVersion" : "7.3.36",
"networkId" : "3acf5c52-9ec2-41a9-8262-b02208ab9178",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c1cef956-59ac-43fa-83d6-05d4476db651"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/43d23bfe-5802-4617-923f-584528696d49"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3acf5c52-9ec2-41a9-8262-b02208ab9178",
"profile" : "parent"
}
}
}, {
"id" : "c5899516-b633-4c58-9c5e-5ae846a9f3a1",
"hostId" : "7fb5ede0-e34e-4b2f-9e10-8c9a86169d03",
"ownerIdentityId" : "910af985-e8e5-4e97-81b5-3b1b5354e024",
"createdBy" : "910af985-e8e5-4e97-81b5-3b1b5354e024",
"createdAt" : "2023-06-01T16:18:36.076868Z",
"updatedAt" : "2023-06-01T16:18:36.076868Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-63",
"domainName" : null,
"name" : "er-test-62",
"productVersion" : "7.3.36",
"networkId" : "fe739808-230c-4df5-8585-244008c83034",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c5899516-b633-4c58-9c5e-5ae846a9f3a1"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/7fb5ede0-e34e-4b2f-9e10-8c9a86169d03"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fe739808-230c-4df5-8585-244008c83034",
"profile" : "parent"
}
}
}, {
"id" : "c7a2f610-092c-46b5-b39b-54a48faea3c9",
"hostId" : "1a57711c-f78b-40c8-af56-e4d0c2e70bd8",
"ownerIdentityId" : "64e0c3d9-5783-4257-b673-57a4e0a4bc45",
"createdBy" : "64e0c3d9-5783-4257-b673-57a4e0a4bc45",
"createdAt" : "2023-06-01T16:18:35.603871Z",
"updatedAt" : "2023-06-01T16:18:35.603871Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-42",
"domainName" : null,
"name" : "er-test-41",
"productVersion" : "7.3.36",
"networkId" : "938a8eee-ac4f-4f56-8ef7-61ed515e99d5",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c7a2f610-092c-46b5-b39b-54a48faea3c9"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/1a57711c-f78b-40c8-af56-e4d0c2e70bd8"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/938a8eee-ac4f-4f56-8ef7-61ed515e99d5",
"profile" : "parent"
}
}
}, {
"id" : "c7f6ea2f-b3a2-4254-82cf-4b061669c7ac",
"hostId" : "2706e893-9017-420e-a4a6-84e430381bdb",
"ownerIdentityId" : "59b30bc7-e01c-4a6e-a368-86f2050b8a0b",
"createdBy" : "59b30bc7-e01c-4a6e-a368-86f2050b8a0b",
"createdAt" : "2023-06-01T16:18:44.416361Z",
"updatedAt" : "2023-06-01T16:18:44.416361Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-297",
"domainName" : null,
"name" : "er-test-296",
"productVersion" : "7.3.36",
"networkId" : "36e02a51-caa2-462d-be94-f1a0969fcf36",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c7f6ea2f-b3a2-4254-82cf-4b061669c7ac"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2706e893-9017-420e-a4a6-84e430381bdb"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/36e02a51-caa2-462d-be94-f1a0969fcf36",
"profile" : "parent"
}
}
}, {
"id" : "c90d12b7-8cd4-4334-b116-176dc4958396",
"hostId" : "6bad5cc9-bf7f-465b-8fbc-09ab8424d275",
"ownerIdentityId" : "21e1b902-78bc-44f2-8c2c-81cb3f6a1d2a",
"createdBy" : "21e1b902-78bc-44f2-8c2c-81cb3f6a1d2a",
"createdAt" : "2023-06-01T16:18:49.271366Z",
"updatedAt" : "2023-06-01T16:18:49.271366Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-508",
"domainName" : null,
"name" : "er-test-507",
"productVersion" : "7.3.36",
"networkId" : "ec3559bc-3ce9-4322-baab-f9faf78afeaf",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/c90d12b7-8cd4-4334-b116-176dc4958396"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6bad5cc9-bf7f-465b-8fbc-09ab8424d275"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ec3559bc-3ce9-4322-baab-f9faf78afeaf",
"profile" : "parent"
}
}
}, {
"id" : "cd1588fc-8c21-4cd7-a0d8-74c9f07e2256",
"hostId" : "2f7f3277-99cb-4504-b7c5-d2d85ed93c37",
"ownerIdentityId" : "974d7f0f-ccea-4952-b1c2-c038dd81fd31",
"createdBy" : "974d7f0f-ccea-4952-b1c2-c038dd81fd31",
"createdAt" : "2023-06-01T16:18:36.105639Z",
"updatedAt" : "2023-06-01T16:18:36.105639Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-66",
"domainName" : null,
"name" : "er-test-65",
"productVersion" : "7.3.36",
"networkId" : "fe739808-230c-4df5-8585-244008c83034",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cd1588fc-8c21-4cd7-a0d8-74c9f07e2256"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/2f7f3277-99cb-4504-b7c5-d2d85ed93c37"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/fe739808-230c-4df5-8585-244008c83034",
"profile" : "parent"
}
}
}, {
"id" : "cde3594d-b3a6-4c4b-9e80-e8df89422de5",
"hostId" : "ee37c18e-586c-4480-b129-a97e9b6236a5",
"ownerIdentityId" : "e69a8b8a-fd41-4b7a-94b0-c647377d6445",
"createdBy" : "e69a8b8a-fd41-4b7a-94b0-c647377d6445",
"createdAt" : "2023-06-01T16:18:35.643180Z",
"updatedAt" : "2023-06-01T16:18:35.643180Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-51",
"domainName" : null,
"name" : "er-test-50",
"productVersion" : "7.3.36",
"networkId" : "938a8eee-ac4f-4f56-8ef7-61ed515e99d5",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cde3594d-b3a6-4c4b-9e80-e8df89422de5"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ee37c18e-586c-4480-b129-a97e9b6236a5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/938a8eee-ac4f-4f56-8ef7-61ed515e99d5",
"profile" : "parent"
}
}
}, {
"id" : "cf0107a8-a761-4c17-8863-795516592893",
"hostId" : "8a2f8218-a9f0-4025-972e-a614b1fb6342",
"ownerIdentityId" : "cd44950a-7052-46c3-94bb-f11d00524cf9",
"createdBy" : "cd44950a-7052-46c3-94bb-f11d00524cf9",
"createdAt" : "2023-06-01T16:18:41.176527Z",
"updatedAt" : "2023-06-01T16:18:41.176527Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-189",
"domainName" : null,
"name" : "er-test-188",
"productVersion" : "7.3.36",
"networkId" : "dc6ada1c-550c-413d-945a-db4a0b4da18e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cf0107a8-a761-4c17-8863-795516592893"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/8a2f8218-a9f0-4025-972e-a614b1fb6342"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/dc6ada1c-550c-413d-945a-db4a0b4da18e",
"profile" : "parent"
}
}
}, {
"id" : "cf6eccfb-be6a-430c-9a6c-8731babffc45",
"hostId" : "ae63d9c6-67b3-45ff-8ff7-07bf30704a4d",
"ownerIdentityId" : "00e8856a-9ffe-4f34-8cb0-7eb5041b5ac3",
"createdBy" : "00e8856a-9ffe-4f34-8cb0-7eb5041b5ac3",
"createdAt" : "2023-06-01T16:18:45.970708Z",
"updatedAt" : "2023-06-01T16:18:45.970708Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-336",
"domainName" : null,
"name" : "er-test-335",
"productVersion" : "7.3.36",
"networkId" : "9a8f0fd7-04d0-47a4-b553-3e255fddbfbf",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/cf6eccfb-be6a-430c-9a6c-8731babffc45"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/ae63d9c6-67b3-45ff-8ff7-07bf30704a4d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9a8f0fd7-04d0-47a4-b553-3e255fddbfbf",
"profile" : "parent"
}
}
}, {
"id" : "d1ec1891-e947-4891-a33c-8e7cd10fae49",
"hostId" : "fa26b901-8c92-4c3f-a5d1-1bccd0e25d4a",
"ownerIdentityId" : "e8c7a299-e4bc-4288-9a03-3328549784d5",
"createdBy" : "e8c7a299-e4bc-4288-9a03-3328549784d5",
"createdAt" : "2023-06-01T16:18:45.984207Z",
"updatedAt" : "2023-06-01T16:18:45.984207Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-339",
"domainName" : null,
"name" : "er-test-338",
"productVersion" : "7.3.36",
"networkId" : "9a8f0fd7-04d0-47a4-b553-3e255fddbfbf",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d1ec1891-e947-4891-a33c-8e7cd10fae49"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fa26b901-8c92-4c3f-a5d1-1bccd0e25d4a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9a8f0fd7-04d0-47a4-b553-3e255fddbfbf",
"profile" : "parent"
}
}
}, {
"id" : "d2a2e8eb-bbbc-4b2e-8e47-88d7d34fdda9",
"hostId" : "4e7aced9-5f03-43a5-8499-9bcfa318b13d",
"ownerIdentityId" : "8cc9dcfd-2bfb-4c71-bf9d-8e0838656ce8",
"createdBy" : "8cc9dcfd-2bfb-4c71-bf9d-8e0838656ce8",
"createdAt" : "2023-06-01T16:18:43.024063Z",
"updatedAt" : "2023-06-01T16:18:43.024063Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-237",
"domainName" : null,
"name" : "er-test-236",
"productVersion" : "7.3.36",
"networkId" : "bc682a95-cdb8-4a1c-a3a6-e39b1e6a0dc9",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d2a2e8eb-bbbc-4b2e-8e47-88d7d34fdda9"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4e7aced9-5f03-43a5-8499-9bcfa318b13d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bc682a95-cdb8-4a1c-a3a6-e39b1e6a0dc9",
"profile" : "parent"
}
}
}, {
"id" : "d650603a-e0b2-478e-a3a6-db2f69efdab3",
"hostId" : "6af8366d-c3bf-4d72-a38d-1fedd1201933",
"ownerIdentityId" : "838cb2a3-b616-4292-b5e5-70cffaeb50a2",
"createdBy" : "838cb2a3-b616-4292-b5e5-70cffaeb50a2",
"createdAt" : "2023-06-01T16:18:45.169370Z",
"updatedAt" : "2023-06-01T16:18:45.169370Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-324",
"domainName" : null,
"name" : "er-test-323",
"productVersion" : "7.3.36",
"networkId" : "8b7bdd2d-9119-406a-b2f6-63659927438c",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/d650603a-e0b2-478e-a3a6-db2f69efdab3"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6af8366d-c3bf-4d72-a38d-1fedd1201933"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8b7bdd2d-9119-406a-b2f6-63659927438c",
"profile" : "parent"
}
}
}, {
"id" : "de3fc2e4-08e0-4758-84b2-97da2260ef2f",
"hostId" : "baa5c6c5-d3a7-4021-bb4a-d1be274477f5",
"ownerIdentityId" : "5965cce4-8dd3-47bc-8850-3c09585289f5",
"createdBy" : "5965cce4-8dd3-47bc-8850-3c09585289f5",
"createdAt" : "2023-06-01T16:18:34.976755Z",
"updatedAt" : "2023-06-01T16:18:34.976755Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-27",
"domainName" : null,
"name" : "er-test-26",
"productVersion" : "7.3.36",
"networkId" : "07e41566-52c0-4571-9fb9-64bd06ccf4a6",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/de3fc2e4-08e0-4758-84b2-97da2260ef2f"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/baa5c6c5-d3a7-4021-bb4a-d1be274477f5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/07e41566-52c0-4571-9fb9-64bd06ccf4a6",
"profile" : "parent"
}
}
}, {
"id" : "df7b4861-8906-48e2-9119-8200ee65fa76",
"hostId" : "601659e5-455c-4067-9d57-7f75fcbe57bd",
"ownerIdentityId" : "e9caa610-c545-4dd3-ae3a-e6fbb5bcc0d9",
"createdBy" : "e9caa610-c545-4dd3-ae3a-e6fbb5bcc0d9",
"createdAt" : "2023-06-01T16:18:46.935080Z",
"updatedAt" : "2023-06-01T16:18:46.935080Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-387",
"domainName" : null,
"name" : "er-test-386",
"productVersion" : "7.3.36",
"networkId" : "ea9992eb-9852-47de-9bc2-7080bc45c93a",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/df7b4861-8906-48e2-9119-8200ee65fa76"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/601659e5-455c-4067-9d57-7f75fcbe57bd"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ea9992eb-9852-47de-9bc2-7080bc45c93a",
"profile" : "parent"
}
}
}, {
"id" : "e5a7605c-f932-48a5-b943-c5be8ad6e711",
"hostId" : "4c70b21c-bdd5-4898-88e7-f0d91934906e",
"ownerIdentityId" : "98005b7b-67d6-428d-9519-96f756ab8770",
"createdBy" : "98005b7b-67d6-428d-9519-96f756ab8770",
"createdAt" : "2023-06-01T16:18:46.718706Z",
"updatedAt" : "2023-06-01T16:18:46.718706Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-375",
"domainName" : null,
"name" : "er-test-374",
"productVersion" : "7.3.36",
"networkId" : "25a93ae7-c302-487f-8c90-65a3a479e7c5",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e5a7605c-f932-48a5-b943-c5be8ad6e711"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4c70b21c-bdd5-4898-88e7-f0d91934906e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/25a93ae7-c302-487f-8c90-65a3a479e7c5",
"profile" : "parent"
}
}
}, {
"id" : "e6db0d83-a9c8-43f7-b295-d399cc0e494b",
"hostId" : "e540adea-913c-404a-90f8-67dd69a6c8aa",
"ownerIdentityId" : "abe1e236-ac4c-442d-89ef-912e3e00c197",
"createdBy" : "abe1e236-ac4c-442d-89ef-912e3e00c197",
"createdAt" : "2023-06-01T16:18:49.678397Z",
"updatedAt" : "2023-06-01T16:18:49.678397Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-526",
"domainName" : null,
"name" : "er-test-525",
"productVersion" : "7.3.36",
"networkId" : "2b23120a-f96d-4746-90a5-86bbf48d21ce",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e6db0d83-a9c8-43f7-b295-d399cc0e494b"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e540adea-913c-404a-90f8-67dd69a6c8aa"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2b23120a-f96d-4746-90a5-86bbf48d21ce",
"profile" : "parent"
}
}
}, {
"id" : "e70387ab-637a-4e37-8418-3c279967d0fb",
"hostId" : "6766a2a9-05ba-41c5-9c3f-fb0c35a6a98d",
"ownerIdentityId" : "a0c4c5ca-aa9d-4ccd-9f06-ef0ee377c976",
"createdBy" : "a0c4c5ca-aa9d-4ccd-9f06-ef0ee377c976",
"createdAt" : "2023-06-01T16:18:38.875272Z",
"updatedAt" : "2023-06-01T16:18:38.875272Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-123",
"domainName" : null,
"name" : "er-test-122",
"productVersion" : "7.3.36",
"networkId" : "b09a8f9b-4c83-402a-bea0-4371f39a722e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e70387ab-637a-4e37-8418-3c279967d0fb"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6766a2a9-05ba-41c5-9c3f-fb0c35a6a98d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b09a8f9b-4c83-402a-bea0-4371f39a722e",
"profile" : "parent"
}
}
}, {
"id" : "e859499d-7386-49e1-970b-25a0621120ea",
"hostId" : "d9039d6f-b59f-4caf-a254-3b2fd6ef6c2a",
"ownerIdentityId" : "645b87cc-d32d-4ec7-af2f-089cb6128cd9",
"createdBy" : "645b87cc-d32d-4ec7-af2f-089cb6128cd9",
"createdAt" : "2023-06-01T16:18:35.015825Z",
"updatedAt" : "2023-06-01T16:18:35.015825Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-33",
"domainName" : null,
"name" : "er-test-32",
"productVersion" : "7.3.36",
"networkId" : "07e41566-52c0-4571-9fb9-64bd06ccf4a6",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e859499d-7386-49e1-970b-25a0621120ea"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/d9039d6f-b59f-4caf-a254-3b2fd6ef6c2a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/07e41566-52c0-4571-9fb9-64bd06ccf4a6",
"profile" : "parent"
}
}
}, {
"id" : "e897cc06-7859-44b6-8af6-52c5547b8549",
"hostId" : "3c65f895-f2de-45c7-82de-c20789d918d8",
"ownerIdentityId" : "6b249162-e29b-4fce-a3bd-bb39a73c5f12",
"createdBy" : "6b249162-e29b-4fce-a3bd-bb39a73c5f12",
"createdAt" : "2023-06-01T16:18:47.764378Z",
"updatedAt" : "2023-06-01T16:18:47.764378Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-432",
"domainName" : null,
"name" : "er-test-431",
"productVersion" : "7.3.36",
"networkId" : "5d87e5be-da7d-4575-8335-6ced823212ce",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/e897cc06-7859-44b6-8af6-52c5547b8549"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3c65f895-f2de-45c7-82de-c20789d918d8"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/5d87e5be-da7d-4575-8335-6ced823212ce",
"profile" : "parent"
}
}
}, {
"id" : "eaa58eee-57ee-4003-a98b-35deb00ca757",
"hostId" : "f7ed354c-8749-41ef-9065-8be608dbaf2b",
"ownerIdentityId" : "66a38df0-e4ed-4428-b639-d4f270f6ede6",
"createdBy" : "66a38df0-e4ed-4428-b639-d4f270f6ede6",
"createdAt" : "2023-06-01T16:18:36.870690Z",
"updatedAt" : "2023-06-01T16:18:36.870690Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-81",
"domainName" : null,
"name" : "er-test-80",
"productVersion" : "7.3.36",
"networkId" : "c2f13f8d-8b5d-430e-9688-05ec0d67574f",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/eaa58eee-57ee-4003-a98b-35deb00ca757"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f7ed354c-8749-41ef-9065-8be608dbaf2b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/c2f13f8d-8b5d-430e-9688-05ec0d67574f",
"profile" : "parent"
}
}
}, {
"id" : "eb99ee23-1df3-443f-b6f9-2a46b8eb05d1",
"hostId" : "6760abed-7bbf-4e77-a12a-3e5c94eb19ec",
"ownerIdentityId" : "298d614c-6d9f-470f-8923-5f27a780f7e0",
"createdBy" : "298d614c-6d9f-470f-8923-5f27a780f7e0",
"createdAt" : "2023-06-01T16:18:43.611877Z",
"updatedAt" : "2023-06-01T16:18:43.611877Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-261",
"domainName" : null,
"name" : "er-test-260",
"productVersion" : "7.3.36",
"networkId" : "0587933d-6203-41ba-9f70-b6a5c3df2eb4",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/eb99ee23-1df3-443f-b6f9-2a46b8eb05d1"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6760abed-7bbf-4e77-a12a-3e5c94eb19ec"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0587933d-6203-41ba-9f70-b6a5c3df2eb4",
"profile" : "parent"
}
}
}, {
"id" : "ec40f84a-4700-43da-8306-1bd8c65c9ed3",
"hostId" : "39e0034b-b4d5-4c83-af8d-31c59a09dc61",
"ownerIdentityId" : "2f73f0e1-b619-4c9e-964c-cbd963cbfb91",
"createdBy" : "2f73f0e1-b619-4c9e-964c-cbd963cbfb91",
"createdAt" : "2023-06-01T16:18:39.945194Z",
"updatedAt" : "2023-06-01T16:18:39.945194Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-132",
"domainName" : null,
"name" : "er-test-131",
"productVersion" : "7.3.36",
"networkId" : "490a4bcb-f4c8-4598-96fc-eff3f00df443",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/ec40f84a-4700-43da-8306-1bd8c65c9ed3"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/39e0034b-b4d5-4c83-af8d-31c59a09dc61"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/490a4bcb-f4c8-4598-96fc-eff3f00df443",
"profile" : "parent"
}
}
}, {
"id" : "f1ad4ced-8a81-48c9-b508-240f66291a5d",
"hostId" : "a175c013-348f-4590-99ff-31c2f5df6309",
"ownerIdentityId" : "bb7642ac-46c6-4b23-a8e2-07b8083d6b02",
"createdBy" : "bb7642ac-46c6-4b23-a8e2-07b8083d6b02",
"createdAt" : "2023-06-01T16:18:45.131478Z",
"updatedAt" : "2023-06-01T16:18:45.131478Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-318",
"domainName" : null,
"name" : "er-test-317",
"productVersion" : "7.3.36",
"networkId" : "8b7bdd2d-9119-406a-b2f6-63659927438c",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f1ad4ced-8a81-48c9-b508-240f66291a5d"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a175c013-348f-4590-99ff-31c2f5df6309"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8b7bdd2d-9119-406a-b2f6-63659927438c",
"profile" : "parent"
}
}
}, {
"id" : "f3803581-4de1-49bf-b581-09a900126cbf",
"hostId" : "bedf30df-7082-4584-ac02-e1108cf125a4",
"ownerIdentityId" : "2acb87d8-3c53-4986-9205-36d270e64053",
"createdBy" : "2acb87d8-3c53-4986-9205-36d270e64053",
"createdAt" : "2023-06-01T16:18:46.319870Z",
"updatedAt" : "2023-06-01T16:18:46.412653Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "V7izm39zFfaVNr9BvapHm",
"domainName" : null,
"name" : "Test edge router 1685636326",
"productVersion" : "7.3.36",
"networkId" : "73757dbc-a70f-43c5-b50d-c311682ca10e",
"jwt" : null,
"linkListener" : true,
"tunnelerEnabled" : true,
"noTraversal" : false,
"online" : false,
"verified" : false,
"status" : "PROVISIONING",
"softwareDeploymentStateId" : null,
"provider" : "CUSTOMER",
"region" : null,
"hostSize" : null,
"attributes" : [ ],
"registration" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f3803581-4de1-49bf-b581-09a900126cbf"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/bedf30df-7082-4584-ac02-e1108cf125a4"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/73757dbc-a70f-43c5-b50d-c311682ca10e",
"profile" : "parent"
}
}
}, {
"id" : "f3a2ac69-5889-4ca0-9345-412dff12ae6d",
"hostId" : "3f479ca5-ab04-4168-a994-4b808091d82d",
"ownerIdentityId" : "8ae8dac4-b621-46b1-ab5f-bd8f3004e239",
"createdBy" : "8ae8dac4-b621-46b1-ab5f-bd8f3004e239",
"createdAt" : "2023-06-01T16:18:35.625269Z",
"updatedAt" : "2023-06-01T16:18:35.625269Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-45",
"domainName" : null,
"name" : "er-test-44",
"productVersion" : "7.3.36",
"networkId" : "938a8eee-ac4f-4f56-8ef7-61ed515e99d5",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f3a2ac69-5889-4ca0-9345-412dff12ae6d"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/3f479ca5-ab04-4168-a994-4b808091d82d"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/938a8eee-ac4f-4f56-8ef7-61ed515e99d5",
"profile" : "parent"
}
}
}, {
"id" : "f62d9017-378a-4735-93ab-027d314e0818",
"hostId" : "4fb6304b-d895-44d6-a6e5-851ccf858a3e",
"ownerIdentityId" : "339b17b1-874f-4f51-b448-ee979d9d4962",
"createdBy" : "339b17b1-874f-4f51-b448-ee979d9d4962",
"createdAt" : "2023-06-01T16:18:45.987596Z",
"updatedAt" : "2023-06-01T16:18:45.987596Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-342",
"domainName" : null,
"name" : "er-test-341",
"productVersion" : "7.3.36",
"networkId" : "9a8f0fd7-04d0-47a4-b553-3e255fddbfbf",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f62d9017-378a-4735-93ab-027d314e0818"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4fb6304b-d895-44d6-a6e5-851ccf858a3e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/9a8f0fd7-04d0-47a4-b553-3e255fddbfbf",
"profile" : "parent"
}
}
}, {
"id" : "f71bd773-a5a0-46e7-9100-75098145eb42",
"hostId" : "efc076f9-e40b-4307-b3ad-0775c4dba749",
"ownerIdentityId" : "443ef4e0-3521-48d3-ad9c-e2c9e0bf337c",
"createdBy" : "443ef4e0-3521-48d3-ad9c-e2c9e0bf337c",
"createdAt" : "2023-06-01T16:18:42.528659Z",
"updatedAt" : "2023-06-01T16:18:42.528659Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-219",
"domainName" : null,
"name" : "er-test-218",
"productVersion" : "7.3.36",
"networkId" : "e4855948-13df-460b-a0ef-019b216e9193",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f71bd773-a5a0-46e7-9100-75098145eb42"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/efc076f9-e40b-4307-b3ad-0775c4dba749"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e4855948-13df-460b-a0ef-019b216e9193",
"profile" : "parent"
}
}
}, {
"id" : "f7a25c95-8372-4e50-9f44-591c5a7ee04f",
"hostId" : "75e19be4-3dce-4a59-87e5-d3cc1fbd4681",
"ownerIdentityId" : "90c390c4-c334-4080-beff-9384e85df81d",
"createdBy" : "90c390c4-c334-4080-beff-9384e85df81d",
"createdAt" : "2023-06-01T16:18:34.998067Z",
"updatedAt" : "2023-06-01T16:18:34.998067Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-30",
"domainName" : null,
"name" : "er-test-29",
"productVersion" : "7.3.36",
"networkId" : "07e41566-52c0-4571-9fb9-64bd06ccf4a6",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f7a25c95-8372-4e50-9f44-591c5a7ee04f"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/75e19be4-3dce-4a59-87e5-d3cc1fbd4681"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/07e41566-52c0-4571-9fb9-64bd06ccf4a6",
"profile" : "parent"
}
}
}, {
"id" : "f8263f62-f673-4ad3-8111-ab95352ef5a7",
"hostId" : "6ee653aa-729a-4e0f-be48-4c04dca99be9",
"ownerIdentityId" : "d472036a-729f-4845-a9f0-7c6d6db98d9b",
"createdBy" : "d472036a-729f-4845-a9f0-7c6d6db98d9b",
"createdAt" : "2023-06-01T16:18:44.460198Z",
"updatedAt" : "2023-06-01T16:18:44.460198Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-306",
"domainName" : null,
"name" : "er-test-305",
"productVersion" : "7.3.36",
"networkId" : "36e02a51-caa2-462d-be94-f1a0969fcf36",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f8263f62-f673-4ad3-8111-ab95352ef5a7"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/6ee653aa-729a-4e0f-be48-4c04dca99be9"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/36e02a51-caa2-462d-be94-f1a0969fcf36",
"profile" : "parent"
}
}
}, {
"id" : "f90b1ba4-6859-4a0a-84c1-2cab9d6b53d4",
"hostId" : "361a9bba-b01e-40cd-915b-d8b4e5ca03ba",
"ownerIdentityId" : "634e5cd1-ebe8-4e1d-87a0-12a0ee015005",
"createdBy" : "634e5cd1-ebe8-4e1d-87a0-12a0ee015005",
"createdAt" : "2023-06-01T16:18:38.514230Z",
"updatedAt" : "2023-06-01T16:18:38.514230Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-102",
"domainName" : null,
"name" : "er-test-101",
"productVersion" : "7.3.36",
"networkId" : "d0b12fa0-1086-4757-945c-a2f88661303f",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f90b1ba4-6859-4a0a-84c1-2cab9d6b53d4"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/361a9bba-b01e-40cd-915b-d8b4e5ca03ba"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/d0b12fa0-1086-4757-945c-a2f88661303f",
"profile" : "parent"
}
}
}, {
"id" : "f9e61364-a377-4136-9d65-925e5c1fbc6a",
"hostId" : "e89379e8-fa6e-4438-bdfa-352294dd55f5",
"ownerIdentityId" : "1165273b-c63d-4a66-a863-4c584df9a282",
"createdBy" : "1165273b-c63d-4a66-a863-4c584df9a282",
"createdAt" : "2023-06-01T16:18:40.054552Z",
"updatedAt" : "2023-06-01T16:18:40.054552Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-151",
"domainName" : null,
"name" : "er-ziti-features-150",
"productVersion" : "7.3.33",
"networkId" : "7de69aca-c337-4200-b5a7-50cf10a36267",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/f9e61364-a377-4136-9d65-925e5c1fbc6a"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/e89379e8-fa6e-4438-bdfa-352294dd55f5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/7de69aca-c337-4200-b5a7-50cf10a36267",
"profile" : "parent"
}
}
}, {
"id" : "fa6273b8-ebb4-4211-89cf-210aef83058d",
"hostId" : "f4332a6e-a407-4a88-aed1-b075f861272c",
"ownerIdentityId" : "1cdcfd22-1a2a-4298-bf66-e0bae1e6db0d",
"createdBy" : "1cdcfd22-1a2a-4298-bf66-e0bae1e6db0d",
"createdAt" : "2023-06-01T16:18:44.030677Z",
"updatedAt" : "2023-06-01T16:18:44.030677Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-279",
"domainName" : null,
"name" : "er-test-278",
"productVersion" : "7.3.36",
"networkId" : "2d1c60d7-ffd9-426e-9279-4d9b84f6c7cc",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fa6273b8-ebb4-4211-89cf-210aef83058d"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/f4332a6e-a407-4a88-aed1-b075f861272c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/2d1c60d7-ffd9-426e-9279-4d9b84f6c7cc",
"profile" : "parent"
}
}
}, {
"id" : "fb278a34-8a8d-4c77-b3ae-8f7024457fb6",
"hostId" : "dba9ae11-c2f2-47be-af17-b0bb8c01f868",
"ownerIdentityId" : "89e5c2fc-c48f-49ea-86a4-b6e905d65837",
"createdBy" : "89e5c2fc-c48f-49ea-86a4-b6e905d65837",
"createdAt" : "2023-06-01T16:18:39.987856Z",
"updatedAt" : "2023-06-01T16:18:39.987856Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-141",
"domainName" : null,
"name" : "er-test-140",
"productVersion" : "7.3.36",
"networkId" : "490a4bcb-f4c8-4598-96fc-eff3f00df443",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fb278a34-8a8d-4c77-b3ae-8f7024457fb6"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/dba9ae11-c2f2-47be-af17-b0bb8c01f868"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/490a4bcb-f4c8-4598-96fc-eff3f00df443",
"profile" : "parent"
}
}
}, {
"id" : "fc4618e6-166a-435c-96f4-84e40a9a54c5",
"hostId" : "78b734d3-b33e-454b-84ec-4b7efec20a82",
"ownerIdentityId" : "58e9a907-6348-4faa-9d95-b47ca52b25ab",
"createdBy" : "58e9a907-6348-4faa-9d95-b47ca52b25ab",
"createdAt" : "2023-06-01T16:18:48.954237Z",
"updatedAt" : "2023-06-01T16:18:48.954237Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-496",
"domainName" : null,
"name" : "er-test-495",
"productVersion" : "7.3.36",
"networkId" : "e82de4d8-ab53-4ec6-a4d8-387538df9e91",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fc4618e6-166a-435c-96f4-84e40a9a54c5"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/78b734d3-b33e-454b-84ec-4b7efec20a82"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e82de4d8-ab53-4ec6-a4d8-387538df9e91",
"profile" : "parent"
}
}
}, {
"id" : "fe70f7e1-19c5-4cc0-a2a8-32489e237446",
"hostId" : "76df31ef-8ab5-4c16-b91b-581f5f694438",
"ownerIdentityId" : "aa763a95-112d-4cbd-a4e4-6826149fdad5",
"createdBy" : "aa763a95-112d-4cbd-a4e4-6826149fdad5",
"createdAt" : "2023-06-01T16:18:38.844906Z",
"updatedAt" : "2023-06-01T16:18:38.844906Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-120",
"domainName" : null,
"name" : "er-test-119",
"productVersion" : "7.3.36",
"networkId" : "b09a8f9b-4c83-402a-bea0-4371f39a722e",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fe70f7e1-19c5-4cc0-a2a8-32489e237446"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/76df31ef-8ab5-4c16-b91b-581f5f694438"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/b09a8f9b-4c83-402a-bea0-4371f39a722e",
"profile" : "parent"
}
}
}, {
"id" : "fe8baf6f-9299-4cf9-b410-45121f3c15fc",
"hostId" : "71c2303d-3c87-47f0-af78-9993439e955a",
"ownerIdentityId" : "0387d560-9706-4215-bffd-7b3287291972",
"createdBy" : "0387d560-9706-4215-bffd-7b3287291972",
"createdAt" : "2023-06-01T16:18:46.937936Z",
"updatedAt" : "2023-06-01T16:18:46.937936Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-390",
"domainName" : null,
"name" : "er-test-389",
"productVersion" : "7.3.36",
"networkId" : "ea9992eb-9852-47de-9bc2-7080bc45c93a",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/fe8baf6f-9299-4cf9-b410-45121f3c15fc"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/71c2303d-3c87-47f0-af78-9993439e955a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ea9992eb-9852-47de-9bc2-7080bc45c93a",
"profile" : "parent"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers"
}
},
"page" : {
"size" : 3500,
"totalElements" : 119,
"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/be38ac1f-09d1-489a-98dd-35c6d36e7fc5' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJEYXk2QUJPRXpMOHNRU1BianZDRU9RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijk3NDFjY2JmLWQ1MTgtNDA0Mi1iNTNlLWE1M2UzZGZmZDAyMSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMzNCwiZXhwIjoxNjg1NjM5OTM0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjQ4MjY0Y2YxLWU5NWMtNDczZi1iYjk0LTY3YWIzZTczMzU2YlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMzNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.JCod_A3GMISuh7FigtNGcafurVkjHrWkIHJ0qFxRnOTm1NkiVxIxJA539t7FUrvOPZpAWPi57Cao1hHbWlKz8zJ-EcT0-7Gh04XSe_eQhaRbP8T6sd7Ccs0WWlbd15nCkbzSnN5wEB7Xa9OPDMIQsd8GACp0g6LRTMBUd03PUKDnpCv-J9G81tMZQqgMy5J8VxPZfJYPJuaoRfXH8DhHLdgqo8f9Tyi2knVOIOWjYubC-4Wfopy-AFgoBBmDlHfBj3tCils2vA0kz3uf6HPsW4Ibge0OFd9iOIhPlBJ5xkkCUa5Lxku8n0h6Q_LjQClD5ARAzNOTwibVPtBj4ypj9Q'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1297
{
"id" : "be38ac1f-09d1-489a-98dd-35c6d36e7fc5",
"hostId" : "a710f291-f0e9-4b76-b6ca-146b39c1f07a",
"ownerIdentityId" : "a57c85d5-87a2-47c9-94dc-3eeed3b90aa4",
"createdBy" : "a57c85d5-87a2-47c9-94dc-3eeed3b90aa4",
"createdAt" : "2023-06-01T16:18:54.532493Z",
"updatedAt" : "2023-06-01T16:18:54.532493Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-577",
"domainName" : null,
"name" : "er-test-576",
"productVersion" : "7.3.36",
"networkId" : "e0c9e7a2-0474-4547-9d71-84c0bd2fb9a9",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/be38ac1f-09d1-489a-98dd-35c6d36e7fc5"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/a710f291-f0e9-4b76-b6ca-146b39c1f07a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e0c9e7a2-0474-4547-9d71-84c0bd2fb9a9",
"profile" : "parent"
}
}
}
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 |
|
dataCenterId |
String |
true |
Deprecated.. |
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 |
|
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.eyJqdGkiOiJ2bWowU00tNmV1N2lVUWR0dktXSWF3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjBlMTVhMmM3LWI2NjktNDk1Ni05MzdlLWZiZDc0ZDc5NWVjYiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMyNCwiZXhwIjoxNjg1NjM5OTI0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjdkYTFlZDNhLTE0ODAtNGU5Yy04NThlLTBkNzEyNGFjOWNmMFwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMyNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.XSvTu5tAQPAOl-OiL9gXfJseuJRPEAd5nq9hSbjmAogKe5kWtqZ7ZSefvDxl6JwJJ0eHRXd8i-rCHn7mVObNFtajcKPEexKm8kOJg0286pua32DfvYMQIkXN7DXJuHIU4eSIf-Zvt3X9iLeZY1or1cgjIQNp9PJsgG76-NHNWVp0XKk18WGx7LOCILanQB2sKs09skWydBGxEjMUM4XAJODi8Kw9xqeghSP04OMf9Rlg6tyUWJBEjoFSAw_g4jYf3BkcPvq9aAv6bHqri15WMSVh0EF840Vl8o8qJeuuwWufCj5kMHf-jXFwJhy4Pl3EhyX9deq19BNbAivB-oYiHQ' \
-d '{"name":"Test edge router 1685636324","networkId":"36e02a51-caa2-462d-be94-f1a0969fcf36","provider":"AWS","region":"us-east-1","attributes":[]}'
Example response
HTTP/1.1 202 Accepted
X-NF-deprecated-property: dataCenterId; removal 1/1/2023; see https://gateway.production.netfoundry.io/core/v2/docs/index.html#resources-edge-routers-get-edge-routers
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1123
{
"id" : "b2d1fc48-7e92-4639-ad70-168874246940",
"hostId" : null,
"ownerIdentityId" : "0e15a2c7-b669-4956-937e-fbd74d795ecb",
"createdBy" : "0e15a2c7-b669-4956-937e-fbd74d795ecb",
"createdAt" : "2023-06-01T16:18:44.597626Z",
"updatedAt" : "2023-06-01T16:18:44.597626Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : null,
"domainName" : null,
"name" : "Test edge router 1685636324",
"productVersion" : "7.3.36",
"networkId" : "36e02a51-caa2-462d-be94-f1a0969fcf36",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b2d1fc48-7e92-4639-ad70-168874246940"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/36e02a51-caa2-462d-be94-f1a0969fcf36",
"profile" : "parent"
}
}
}
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 |
|
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/edge-routers/b7125759-2828-40b7-8974-3820ab1047a6' -i -X PATCH \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJjX01BZ3JJVkVEejFfYjFsTHY3aHVRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjI2OGM0NzQzLThkNjMtNGJkMy04N2M2LTVmMmFlYTY2ZjM0ZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMzNCwiZXhwIjoxNjg1NjM5OTM0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNmMzg1MTM5LWZjNDEtNDdmNi1hZGIxLTBjOWM1YjljYmIwZFwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMzNH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.YvBeQi8NV-snMkLuQYEkCLDY3oCpAzcMew4FzxsPgw6ltQv9dgc2x_anls1qSi4X8_DRJ8tCTKBKSMZrb0yHBpf2MiMvyFgYMv3yxrYOb6T4NLzGX8PPayZrCobxDJ8iAGSnljFrmfeDDvFA0wDyskmvc4GWZRth6K76vSJ-cRPidl4AYqk16rGCH05poZ1TzSFvu6X_UU6UkGa8Bd9TjZf240Y7uUrPGOscraK4XSkh8Cz2vXlRG8ktO_sg9pz8JCf4wpW7Ng4EIAeRK4x3PsErqnYEa_tocjWFK4UwpctZSf1cWGYjk_1-zLTaWRMQRPjoUGZBeYxr-5X_JDuldA' \
-d '{"name":"Updated name"}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1298
{
"id" : "b7125759-2828-40b7-8974-3820ab1047a6",
"hostId" : "fdaf5a4f-bbc3-4c9c-bbfc-81ea43476e51",
"ownerIdentityId" : "efc1729c-8058-4776-983f-0a6e1dbc06e5",
"createdBy" : "efc1729c-8058-4776-983f-0a6e1dbc06e5",
"createdAt" : "2023-06-01T16:18:54.346680Z",
"updatedAt" : "2023-06-01T16:18:54.398010Z",
"deletedBy" : null,
"deletedAt" : null,
"zitiId" : "ziti-id-559",
"domainName" : null,
"name" : "Updated name",
"productVersion" : "7.3.36",
"networkId" : "7c7c35e5-f208-4a2f-85de-50e219c9a9e6",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/b7125759-2828-40b7-8974-3820ab1047a6"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/fdaf5a4f-bbc3-4c9c-bbfc-81ea43476e51"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/7c7c35e5-f208-4a2f-85de-50e219c9a9e6",
"profile" : "parent"
}
}
}
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/8f344537-6814-4d1d-a301-25e22ebb9f9a' -i -X DELETE \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ4OS00T2I5SU00SGJGQ3ZSS2NZU2FRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjhjYmZmYTBjLTRlOGMtNGQwMi05YTNhLTFiMDQyZTNlYmZjZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjMyNywiZXhwIjoxNjg1NjM5OTI3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImU4ZDVkNDhhLTVlZjMtNGQ3NS1hMjE5LTExMTNiYTcyZGM0MlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjMyN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ig1eIJeXujQrdnlY4B29UUwpJ2l4l9jHz62TKiZ05t0tEsmBVKg5ymGX9HmNw1c9QIKf3JTCbWRECAF3KKOQE-StgpvAwSlHmtaxT_3GKRSqEpM-gdywI6p8z-5hd0oXOv75wADpj-IxnEOVFHqLdHU52A_6r-JkPBQNA39fjGKiD9-DHA0it8KIW8ha2i5qt1uMlYyTskYu3fQ6QxeftxsF0NnovxU1ow-tHXgk5lS-5_sAduIvMaiOEwxPMJL8iP2OjCgA2XUlZmVyXJcczwelgDieHTM-tcNBDZod2V9NVEhFvtSXphavMcEwgb7oXa8GcV84fFvr42BRq9EfQw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1328
{
"id" : "8f344537-6814-4d1d-a301-25e22ebb9f9a",
"hostId" : "4af20545-d330-4501-89d4-8e4e8c3dc582",
"ownerIdentityId" : "a67d34ff-41e0-46a6-8f84-15a54dede4c1",
"createdBy" : "a67d34ff-41e0-46a6-8f84-15a54dede4c1",
"createdAt" : "2023-06-01T16:18:47.184240Z",
"updatedAt" : "2023-06-01T16:18:47.297586Z",
"deletedBy" : "8cbffa0c-4e8c-4d02-9a3a-1b042e3ebfcd",
"deletedAt" : null,
"zitiId" : "ziti-id-408",
"domainName" : null,
"name" : "er-test-407",
"productVersion" : "7.3.36",
"networkId" : "3acf5c52-9ec2-41a9-8262-b02208ab9178",
"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" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-routers/8f344537-6814-4d1d-a301-25e22ebb9f9a"
},
"host" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/hosts/4af20545-d330-4501-89d4-8e4e8c3dc582"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/3acf5c52-9ec2-41a9-8262-b02208ab9178",
"profile" : "parent"
}
}
}
Edge Router Policies
Find Edge Router Policies
GET /v2/edge-router-policies
Authorization
This endpoint requires read
action on the edge-router-policy
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
networkId |
String |
true |
|
zitiId |
String |
true |
|
name |
String |
true |
|
isSystem |
Boolean |
true |
|
semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
endpointAttributes |
Array[String] |
true |
|
edgeRouterAttributes |
Array[String] |
true |
|
exclusiveType |
String |
true |
Must be one of [app-wan, endpoint, service, edge-router, edge-router-policy, certificate-authority, posture-check, service-edge-router-policy]. |
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.eyJqdGkiOiJXbERuWm4yY3Faa2NZWG5zOUNVQllBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjYwMjAzNmE4LWFiNDItNGJkMy05NzJlLTQwMWNhZWZhZGE4MiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM2NCwiZXhwIjoxNjg1NjM5OTY0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjYzOTlkZDNhLTdjZTEtNGU5Yi04OWNhLWRlMjlkOTFlNjZlNFwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM2NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Na7VXniz9N-KdSB0W7hnSgJiRJKqMbfjc-lQESs32uzgw4t8B2mEB5Oql37M52h4GLDmbVddv8vYZIFos2vOg5wIdTFyszt3Sirw2B_A0xcdBdjocwe7lbOW69jqbWdi9CH9FsOVke_v_kRsdYaNSaJMPRAFxB_KhxDRkVqbcwV0__kL5bl7E6TUo3erR4gwi9HD4bHE3omUjIe-x6hlgSBz_KRGw7CyoMkp4Iw8VW9FOZ3pE2ZGzdPRbHqCpawrfsrrjhviEsh6k0RR1rxfNyDV3W1H9e9ngoRvcCGQimF9kKXZQb3eFbLH8b4jPXIQSyxDihJPamchxzKz_zviIg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1304
{
"_embedded" : {
"edgeRouterPolicyList" : [ {
"id" : "f048f450-9ae6-4ce9-be99-916c7db685aa",
"networkId" : "4cf56c96-9ee6-4491-be5a-b24d4043875a",
"zitiId" : "5966b7ab-a595-4126-a2df-9c2394e1de4d",
"name" : "SXrzTamCnCbvRo5Y82O-o",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"ownerIdentityId" : "af721175-eae2-4822-9412-e4699f1bb7ed",
"createdBy" : "af721175-eae2-4822-9412-e4699f1bb7ed",
"createdAt" : "2023-06-01T16:19:24.275347Z",
"updatedAt" : "2023-06-01T16:19:24.275347Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/f048f450-9ae6-4ce9-be99-916c7db685aa"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/4cf56c96-9ee6-4491-be5a-b24d4043875a",
"profile" : "parent"
}
}
} ]
},
"_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/d2216353-5dff-4f9c-b896-69808ec2bc4f' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJDOFdUdjBmRzA0S3FZTk1pN3hRRVJ3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjEwMWVlYmY4LTI0ODgtNDg5OC05OWM0LWMwZTNjMDAyNTRlZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM2NCwiZXhwIjoxNjg1NjM5OTY0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjY3ZTkzOTRiLWFlMmQtNDlmOC05MTA3LTFjZjgyYjI1Mzk4YVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM2NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.jnSbAu8Uj2R_WMT35KuMvwEVsFRJa0CTFSi8gJxRpwF7apE3vYYKU7iyOmxxs1IML7mJwLvbqiefmNn2Jo2WIA6ofDhyBxvecRCRBzPmOqDiSUxp3VqpEi_rVSZPuA3a55-IRdzlQa2eiHz1PpUr10HFzW9yFoR_Fnmka--U-RsgsT2nKBbgo6Yvnabl3YqgLbLtGIdB7P_cyC9EBgUfbTf4I-qNF3GA1LzP_O7yZAL0TltJdR_a-BhwJf_QQWfWJEnHkJoTwpHUi1RDh5SD8Mow1-SlDU0JdwPMARLPN3gVLu2tuiKI8l9aFoCs5VyrFxFNgnTU4L4T2iuVxchA5w'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 902
{
"id" : "d2216353-5dff-4f9c-b896-69808ec2bc4f",
"networkId" : "f2d91c4a-bec2-4cc4-8732-f9af5a5f74b5",
"zitiId" : "29f3b840-b688-4508-a068-b027ead71752",
"name" : "erp-504",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"ownerIdentityId" : "b2a97e44-9fb7-4a88-ba05-4181ed248a51",
"createdBy" : "b2a97e44-9fb7-4a88-ba05-4181ed248a51",
"createdAt" : "2023-06-01T16:19:24.753048Z",
"updatedAt" : "2023-06-01T16:19:24.753048Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/d2216353-5dff-4f9c-b896-69808ec2bc4f"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f2d91c4a-bec2-4cc4-8732-f9af5a5f74b5",
"profile" : "parent"
}
}
}
Create Edge Router Policy
POST /v2/edge-router-policies
Authorization
This endpoint requires create
action on the edge-router-policy
resource type.
Path parameters
No parameters.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
name |
String |
true |
|
networkId |
String |
true |
|
semantic |
String |
true |
Must be one of [AllOf, AnyOf]. |
endpointAttributes |
Array[String] |
true |
|
edgeRouterAttributes |
Array[String] |
true |
Response fields
Path | Type | Optional | Description |
---|---|---|---|
content |
Object |
true |
|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/edge-router-policies' -i -X POST \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJiQlVtNlRac2ZhWXRlRTJwTm5xb1d3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjMwN2JiZDQwLTMyNTktNDQzZi1hODkwLTA1YzMxMDBkYTVlZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM2NCwiZXhwIjoxNjg1NjM5OTY0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjVmMjVhMTZmLTcyODUtNDJlMS1iMGFhLTBjMjhhMjZkZDhhYVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM2NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.sg6c1iVAYr-zQwKsyxlJkC74YymVkMaXclJO5h2gmWoXjnrwLEtfkwlA3nVfW9LzKjaYFfrcyy4L6DXORCsg9As7AmZbsknLTJWtI13h54ghLsmhCGKrJ1r5LmuWlo0LUPd_I0QSIjN_7U_7nc_HdJ5rl-chNHRrJgfh-Ofgv9Cgk82Fck6XPceMp5u1g-Hj9RNNHnjQvB_s0gl4vOQBv2P9V7X2OdIlMPT5OHJtdhMZSq1qBWo1AB_8oh8uYNjfr1f2pd-QafYRIiwzMIi79bgR46sW52047d_pTRTiZK8xJbqfLz9XHZKGJftlpTqCPHmYSNx3dVDz7XmdgYm_4g' \
-d '{"name":"Test edge router policy 1685636364","networkId":"f1ed601b-11d1-465b-8a86-d31ce1bfc7b0","semantic":"AnyOf","endpointAttributes":["#topclients"],"edgeRouterAttributes":["#westrouters"]}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1151
{
"id" : "0c30a286-e423-4ccd-b527-a0647ef1d5e5",
"networkId" : "f1ed601b-11d1-465b-8a86-d31ce1bfc7b0",
"zitiId" : "ziti.id.6573i4icfd1",
"name" : "Test edge router policy 1685636364",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ "#topclients" ],
"edgeRouterAttributes" : [ "#westrouters" ],
"exclusiveType" : null,
"ownerIdentityId" : "307bbd40-3259-443f-a890-05c3100da5ee",
"createdBy" : "307bbd40-3259-443f-a890-05c3100da5ee",
"createdAt" : "2023-06-01T16:19:24.621824Z",
"updatedAt" : "2023-06-01T16:19:24.683185Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/0c30a286-e423-4ccd-b527-a0647ef1d5e5"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f1ed601b-11d1-465b-8a86-d31ce1bfc7b0",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/63eed1ec-d761-4490-ba32-e11b23e3f24f",
"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/438959b1-b376-4648-b052-c4a81aa8a655' -i -X PUT \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3Z3F4Y3dsTkJEUjF0ODNlcmJKVjdRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImVjMWExZTg1LTYwNDUtNDI3Ny1iYjkzLThkYTk3MDc5YTE5YiIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM2NSwiZXhwIjoxNjg1NjM5OTY1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjU3NDk3OWNkLWEwYzctNGY2NC04MTZmLTNkNjcyMmVlNTdkMlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM2NX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.CbSH9EDQrtmO97Z9c9KV344MV6mEKAxCImcCgXan0sF1yw9efD1bRv_0cSs63G42EnUwHtV5x0GNDefYHrIlHX__OeIKMZAfrUu-FxrksWxe6js_cC5M63oAhI0eFXbuKS2g-l43oocEv73JbNRkCgPWk6FlxSXw66m8GYQOPk0vCB_LuMRVeajt8jH0SWCSvHXjx-_deu0RS5m6eIzRbdVLKDSytwVXZzp5xAIzd1TPKzF7VItkU7htEYTuQLPLB1eSdCiUOuKKDM7QHQrcgnwZELUcc9GPYt5i8th55z4wNEU1Lssqjg07v-wSd-RjELfCZNfkt3ZlfzhGWzQPOw' \
-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: 1148
{
"id" : "438959b1-b376-4648-b052-c4a81aa8a655",
"networkId" : "1ece607c-67f1-48e6-9355-d2b3d9763c6e",
"zitiId" : "ziti.id.6573ig4z4pa",
"name" : "Updated edge router policy name",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ "#topclients" ],
"edgeRouterAttributes" : [ "#westrouters" ],
"exclusiveType" : null,
"ownerIdentityId" : "e3079de5-85d4-46fe-bd94-e7c4a4206a0b",
"createdBy" : "e3079de5-85d4-46fe-bd94-e7c4a4206a0b",
"createdAt" : "2023-06-01T16:19:25.303057Z",
"updatedAt" : "2023-06-01T16:19:25.422147Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/438959b1-b376-4648-b052-c4a81aa8a655"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/1ece607c-67f1-48e6-9355-d2b3d9763c6e",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/2131d244-38d4-4292-80aa-b50a3e5c380d",
"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/fbada1eb-a520-430c-88b4-dcfb01502085' -i -X DELETE \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJsc2VSN0pKRGpZSFItV0YzNGY0QV9nIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImI0NThlNzQyLTI0MjgtNDdlZi1iODlhLTI5NDU4NjYyMGNkOCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM2NSwiZXhwIjoxNjg1NjM5OTY1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImIzMjJhZGJiLTA1YjktNGNkMy04MWE4LTRjZGM1MmEwN2JkNVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM2NX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.afSlLTjd7EOpr3dDGemCQDtZMHM4AEaUKbnnKINBZs1w_9PKjftfvz8VDNM0sMHnlf4RKdaBax1i6sRWsklp5ibraTeNCPI8GvBHh3D34l0nrAbZtFMAZ4nRAIyS56y6DekGtUulR8S633bV0erG_QNSAsEl6b4dyi5a6udlosQ73ZqIPKt5vo34Xe4ftO8_gLINOEyzYQl0OSzZTsnoQ0sr6TSczs87w2EQUI55poMOKtooWtja3eOasQOHd7O37byos6Fp2gxGivMLTuHSmU50IE7ds5sKlwyLwuGDq2f9dMM6VDqfTjy9vmXfm0rT9e34svE1aeqSM_bnay5h_Q'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1178
{
"id" : "fbada1eb-a520-430c-88b4-dcfb01502085",
"networkId" : "96dac429-7613-4843-b72a-f39b447d6870",
"zitiId" : "ziti.id.6573ic1nr20",
"name" : "Test edge router policy 1685636365",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ ],
"edgeRouterAttributes" : [ ],
"exclusiveType" : null,
"ownerIdentityId" : "d0564e1e-b486-41dc-b72a-d4ae1de94e50",
"createdBy" : "d0564e1e-b486-41dc-b72a-d4ae1de94e50",
"createdAt" : "2023-06-01T16:19:25.098302Z",
"updatedAt" : "2023-06-01T16:19:25.159007Z",
"deletedBy" : "b458e742-2428-47ef-b89a-294586620cd8",
"deletedAt" : "2023-06-01T16:19:25.158Z",
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/fbada1eb-a520-430c-88b4-dcfb01502085"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/96dac429-7613-4843-b72a-f39b447d6870",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/c3ae30bb-671b-489c-baea-b0ffa85f9a7f",
"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.eyJqdGkiOiJrRlh1M1Z6TVF2c082SjVDcENMQnhRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjljYTcyNjM1LTdlZDEtNDkwYi05ZTU1LWZiMmEzYmU0NDQyYSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM0NCwiZXhwIjoxNjg1NjM5OTQ0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImE4NDhlZWQ3LWUxZDEtNDgwOS1hMGU1LTMyNGNjYTM2ZDBjMFwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM0NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.eRzL1eiMFaoO9ZfDLCnUtjNQ7IjEuVJn-6ZhfqQiBzkWLVUxtr_NinURMKB3JQkE_bUapfbg4KO6IodfDLCLnh-tjUC0xTceGxhA5WtNw0KOnYzNI13EwRKtJz44BDG13CPHR2bRDOx_yd4o3H4VFwpdIR-bJbuyYoE1nE_ilBce22zGChoKXnHLYwnbJ6uHIpy6L3znRgUT2y2hf9uLlPU76MUs-Y1_jW9Ti7N1pFzsPuntWrmmocfCZQjIHpyyphAFTh7ALO35fLSx-VqxaDEZdqERBHgop8-RCzJvn-RGZFjelKJxWQth0DdFwTgL2Qpdo7glyEKpEDwSEawUTg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2417
{
"_embedded" : {
"edgeRouterPolicyList" : [ {
"id" : "a185a9a2-be52-4935-92fb-cf36d0150886",
"networkId" : "16852fc3-502a-4201-b47d-298705ba4442",
"zitiId" : "9c5ebc5f-1fec-4a1e-85e5-cde24d0546c0",
"name" : "Find Test Edge Router Policy 1",
"isSystem" : false,
"semantic" : "AnyOf",
"endpointAttributes" : [ "#epAttr2", "#epAttr1" ],
"edgeRouterAttributes" : [ "#erAttr2", "#erAttr1" ],
"exclusiveType" : null,
"ownerIdentityId" : "92eb2404-2380-46de-953e-5ae296bae8d6",
"createdBy" : "92eb2404-2380-46de-953e-5ae296bae8d6",
"createdAt" : "2023-06-01T16:19:04.129635Z",
"updatedAt" : "2023-06-01T16:19:04.129635Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/a185a9a2-be52-4935-92fb-cf36d0150886"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/16852fc3-502a-4201-b47d-298705ba4442",
"profile" : "parent"
}
}
}, {
"id" : "be5d0690-edab-4f5a-b747-7b168d94248b",
"networkId" : "16852fc3-502a-4201-b47d-298705ba4442",
"zitiId" : "86c2e9f5-02ad-49f1-91ca-76204b9842ec",
"name" : "Find Test Edge Router Policy 2",
"isSystem" : true,
"semantic" : "AllOf",
"endpointAttributes" : [ "#epAttr1", "#attr3" ],
"edgeRouterAttributes" : [ "#erAttr1" ],
"exclusiveType" : null,
"ownerIdentityId" : "92eb2404-2380-46de-953e-5ae296bae8d6",
"createdBy" : "92eb2404-2380-46de-953e-5ae296bae8d6",
"createdAt" : "2023-06-01T16:19:04.152171Z",
"updatedAt" : "2023-06-01T16:19:04.152171Z",
"deletedBy" : null,
"deletedAt" : null,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies/be5d0690-edab-4f5a-b747-7b168d94248b"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/16852fc3-502a-4201-b47d-298705ba4442",
"profile" : "parent"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/edge-router-policies"
}
},
"page" : {
"size" : 3500,
"totalElements" : 2,
"totalPages" : 1,
"number" : 0
}
}
Services
Find Services
GET /v2/services
Authorization
This endpoint requires read
action on the service
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
No embedded resources.
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/services?config.addressAndPortIndex%5Bingress%5D=foo.bar.com%7C%5B80--80%5D' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ1VVhKdjhXQXE1b0lmQkdRNUw4a01BIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImRjNTM4NGQxLTFlZDUtNDRiZS05NWUwLThiMWEwYTUyNzk1ZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM2NCwiZXhwIjoxNjg1NjM5OTY0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImU5YmY4NjJlLTkzNDItNDQ5My1hMzI2LWJmMjE2MWY2NmFkMVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM2NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.phBiLAAFzBsvqlM7Ru_CT41aGYotec5kZZDygdO0S-oJhwvccKfeZKrfqMAj1KQYsEu_lhGBGo9EEmcx1v05NrhYxYJrxBjQzhyJh1U6861ruXRGvcgE60Af-nwNiw6-QU37qru-G1RvFvocUlYwGMW0urQk1DoWLqP1jua9-OrndNyLYz3zILdwqHur6oBaw-hb8n_Uwn14VJ79tx93XJKvXymXBhMeWdZJDDTzYD29aU9wEnG60LjXAa5oGMAyaA1bcmTxPsqTGvNnJ7aN9sFHvbKGnmQ7JG9-oPzzYpLaVy5QSFpQV6h_wW_TL3QVJdjNyFkXnEYWpGqyQwNYCQ'
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/6b192bd8-c157-43db-8536-66910b6d35e0' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJFcmRCNGQ1Uk8tSzNkdEotdHF6ZzV3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6Ijk0MGNmNTk5LTdmYmItNDg4ZS04MjgyLWZlY2U5N2ZmMDhiZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQzMCwiZXhwIjoxNjg1NjQwMDMwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImY3MWZhMGE1LTFhNWEtNDM0Mi04NjY3LTIwMWE2MGM0ZWJjOVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQzMH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.WAkGoOU6YxFgm1M0L8ugPgvFaXyEwUGyT6r2Hk6d2xfcE5JWD4bLeeKei6BwvrbWYEtrz_jn5rW46cOk4BJ73fCmXkm-5smDJQ0fjz52oJAt5P0PQptgsYM3-rtkRGA0ArlI9PiSiCI2b1pw1QIYBH22jie9Xmk0z5dYGlEYiLgn-nkMfxWGOS4oepgDwxyTvEpQ4x3ceaXPrj1orfPuEmy-N0qTHmP2P9-GIxiijWo-kbc8NxuzMCdvqjJPpXtVEiFsq5rb3f7dMGgXkPkmeQoeDF1i6cr6hrLr7zfU43YSgA2jSi2XioOqTqzqBCVwD9QmtEO-h4WsOmgiZ3sNXA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1651
{
"id" : "6b192bd8-c157-43db-8536-66910b6d35e0",
"networkId" : "395aa58a-e8b7-43e7-ae6e-e878a5608da0",
"zitiId" : "ziti.id.6574c7iap44",
"name" : "My Service 6574avcyy5s",
"encryptionRequired" : true,
"modelType" : "TunnelerToEdgeRouter",
"ownerIdentityId" : "2f4a9ea2-e394-4fc9-8c73-97a724914b17",
"createdBy" : "2f4a9ea2-e394-4fc9-8c73-97a724914b17",
"createdAt" : "2023-06-01T16:20:30.110276Z",
"updatedAt" : "2023-06-01T16:20:30.141434Z",
"deletedBy" : null,
"deletedAt" : null,
"configIdByConfigTypeId" : {
"749895f5-056a-4105-9118-be5f9b339e93" : "33a15280-f797-4143-8d01-ba125e5dfe02"
},
"attributes" : [ "#Attr-1", "#Attr-2" ],
"model" : {
"clientIngress" : {
"host" : "myHost.com",
"port" : 8989
},
"edgeRouterAttributes" : [ ],
"edgeRouterHosts" : [ {
"edgeRouterId" : "ca3420ad-b2bc-4ee9-9c3e-943c37367f4c",
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
}
}, {
"edgeRouterId" : "3f2517c8-b1da-4c43-9ec1-9aa4753a7234",
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services/6b192bd8-c157-43db-8536-66910b6d35e0"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/395aa58a-e8b7-43e7-ae6e-e878a5608da0",
"profile" : "parent"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?id=33a15280-f797-4143-8d01-ba125e5dfe02"
}
}
}
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.eyJqdGkiOiJlY0REQzV4UGN6NXhuMUo2UzJfZmR3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjJmNGE5ZWEyLWUzOTQtNGZjOS04YzczLTk3YTcyNDkxNGIxNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQzMCwiZXhwIjoxNjg1NjQwMDMwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjU4OGRhNmIzLWNlMTctNDA5MS04ZjhiLWYwNmIwYzEzMTU3ZVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQzMH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.QXIjvRyphuEenbQNQCBzO7_5NE5RMF9meUyKDxx9cBDHTL9f-Nuj-drtU7AVztY4Ah2f0omRcgEzPqrHuMhwWwnjRX2oCOVM03YimxqzEGgp6B6vduWQCK77pRU6tZO06e1c7k1j91Wn_plIllgoGplc6aJmhHaQ2darFeJe5Z1VC1A1rb2NkDG_2jvZWqJq-ITyl-TRoI8WtnGo-Zh1KJIQiIOnb_Kgpo2Kf728VgvHb0U3pkzkCDmk4_8xdsR2NE_HzOGoE0S0vG1cObNRuZXAhLchC0RJmRjhTo4xOvET1Xe37fEsixoKiMlO5EeFASIl0qvwKVXWx8vEkn6W2w' \
-d '{"networkId":"395aa58a-e8b7-43e7-ae6e-e878a5608da0","name":"My Service 6574avcyy5s","encryptionRequired":true,"attributes":["#Attr-1","#Attr-2"],"modelType":"TunnelerToEdgeRouter","model":{"clientIngress":{"host":"myHost.com","port":8989},"edgeRouterAttributes":null,"edgeRouterHosts":[{"edgeRouterName":"ER-Passive","serverEgress":{"protocol":"tcp","host":"dmz.io","port":9001}},{"edgeRouterName":"ER-Active","serverEgress":{"protocol":"tcp","host":"dmz.io","port":9001}}]}}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/json
Content-Length: 1194
{
"id" : "6b192bd8-c157-43db-8536-66910b6d35e0",
"networkId" : "395aa58a-e8b7-43e7-ae6e-e878a5608da0",
"zitiId" : "ziti.id.6574c7iap44",
"name" : "My Service 6574avcyy5s",
"encryptionRequired" : true,
"modelType" : "TunnelerToEdgeRouter",
"ownerIdentityId" : "2f4a9ea2-e394-4fc9-8c73-97a724914b17",
"createdBy" : "2f4a9ea2-e394-4fc9-8c73-97a724914b17",
"createdAt" : "2023-06-01T16:20:30.110276Z",
"updatedAt" : "2023-06-01T16:20:30.141434Z",
"deletedBy" : null,
"deletedAt" : null,
"configIdByConfigTypeId" : {
"749895f5-056a-4105-9118-be5f9b339e93" : "33a15280-f797-4143-8d01-ba125e5dfe02"
},
"attributes" : [ "#Attr-1", "#Attr-2" ],
"model" : {
"clientIngress" : {
"host" : "myHost.com",
"port" : 8989
},
"edgeRouterAttributes" : [ ],
"edgeRouterHosts" : [ {
"edgeRouterId" : "ca3420ad-b2bc-4ee9-9c3e-943c37367f4c",
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
}
}, {
"edgeRouterId" : "3f2517c8-b1da-4c43-9ec1-9aa4753a7234",
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
}
} ]
}
}
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/6b192bd8-c157-43db-8536-66910b6d35e0' -i -X PATCH \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJVcFNqbkJDVEp5OVJZY1BSVnIzcUR3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjExZDI4MDg5LWQ2MmItNGQwNi1iY2RmLWY2OTFiM2RiMzI3NCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQzMiwiZXhwIjoxNjg1NjQwMDMyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjFmOTBmYjI4LWJkNmMtNDMxNy1hMjMyLTY3ZjlmOGZjODRkN1wiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQzMn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.OfZN2RQ--9go8AldB8SMwJEmIAQ3tPwhYTIJ8uOX3i63PrsrtsjXOEy50f0LMkEybVDk0D3J9HV9hj2-hLS1IlO8YhuCeJOuHyduu-J5d4Xg-E4I5kQAp2u__UHu2-pWX1lEkydXVTwuW9zaxkXfV4_yQ_N77HZntJ9H72wUIjmr7o24ate4BkFPUuu3PhyxEGdwUMT1NkwbOAXs6920naQNnfFaug_VBp8SelZMKddIi4hyI3DRLLdVEnORp-vP4gmoYzyBweenXn53aANVJLCguCNCjqb0ilAKtX-DvtHYVO-aqAFD4pnanaq4Q393NnHhpPYQJbmUgUkQCuphJw' \
-d '{"name":"Our Service 6574avcyy5s","attributes":["#Attr-4","#Attr-2"],"modelType":"TunnelerToEdgeRouter","model":{"clientIngress":{"host":"myHost.com","port":8989},"edgeRouterAttributes":null,"edgeRouterHosts":[{"edgeRouterId":"ca3420ad-b2bc-4ee9-9c3e-943c37367f4c","serverEgress":{"protocol":"tcp","host":"dmz.io","port":9001}},{"edgeRouterId":"3f2517c8-b1da-4c43-9ec1-9aa4753a7234","serverEgress":{"protocol":"tcp","host":"dmz.io","port":9001}}]}}'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 1652
{
"id" : "6b192bd8-c157-43db-8536-66910b6d35e0",
"networkId" : "395aa58a-e8b7-43e7-ae6e-e878a5608da0",
"zitiId" : "ziti.id.6574c7iap44",
"name" : "Our Service 6574avcyy5s",
"encryptionRequired" : true,
"modelType" : "TunnelerToEdgeRouter",
"ownerIdentityId" : "2f4a9ea2-e394-4fc9-8c73-97a724914b17",
"createdBy" : "2f4a9ea2-e394-4fc9-8c73-97a724914b17",
"createdAt" : "2023-06-01T16:20:30.110276Z",
"updatedAt" : "2023-06-01T16:20:32.694300Z",
"deletedBy" : null,
"deletedAt" : null,
"configIdByConfigTypeId" : {
"749895f5-056a-4105-9118-be5f9b339e93" : "b3c07ec9-a90b-4782-99b3-54618675a9c0"
},
"attributes" : [ "#Attr-4", "#Attr-2" ],
"model" : {
"clientIngress" : {
"host" : "myHost.com",
"port" : 8989
},
"edgeRouterAttributes" : [ ],
"edgeRouterHosts" : [ {
"edgeRouterId" : "ca3420ad-b2bc-4ee9-9c3e-943c37367f4c",
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
}
}, {
"edgeRouterId" : "3f2517c8-b1da-4c43-9ec1-9aa4753a7234",
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services/6b192bd8-c157-43db-8536-66910b6d35e0"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/395aa58a-e8b7-43e7-ae6e-e878a5608da0",
"profile" : "parent"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?id=b3c07ec9-a90b-4782-99b3-54618675a9c0"
}
}
}
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/6b192bd8-c157-43db-8536-66910b6d35e0' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJyOUhISkp4OUVySHFJZWxfQnZsNWJBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjM4ODUxZmFkLWIxOGItNGI3My05ZWNiLTZhMjhiYjFhMDBmOCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQzMywiZXhwIjoxNjg1NjQwMDMzLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNmZDZlMGUzLWQ5NjgtNDY3OS05ZGJkLTFhY2UyODdhN2QyZlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQzM31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.d6-rzz0d_7Y524KdTHUR6S1j-PSCP4lAmjZjx9Ng-MYv1BfS6YIxHsbn_PFa1lG1SMs0lG_tyL-NVl8dfrz9aEQNNX_lhS3TaoX9UaDBzj0pLXN7tz_DV5OXuZMAFfBjAm9o7vfkD5Z0OgVsv_DqUx3i4l53PtB8FOtY5wboqAv1gC9RvhpEX52yBohn7fUSEycvwsbPwB5VNzq4nLQSrG4T7JrfisJ4BZ0-alltKU9JBSLUR82e9qdkxsv0bJEQKJorvAQ37YWqncZUmigig9vfx0lN8J6gMbe3-Eky6Op7ipVKVIm99MRD4e9nxGhjMoiG7b9VWJK8wWSRusPNrA'
Example response
HTTP/1.1 202 Accepted
Content-Type: application/hal+json
Content-Length: 1670
{
"id" : "6b192bd8-c157-43db-8536-66910b6d35e0",
"networkId" : "395aa58a-e8b7-43e7-ae6e-e878a5608da0",
"zitiId" : null,
"name" : "Our Service 6574avcyy5s",
"encryptionRequired" : true,
"modelType" : "TunnelerToEdgeRouter",
"ownerIdentityId" : "2f4a9ea2-e394-4fc9-8c73-97a724914b17",
"createdBy" : "2f4a9ea2-e394-4fc9-8c73-97a724914b17",
"createdAt" : "2023-06-01T16:20:30.110276Z",
"updatedAt" : "2023-06-01T16:20:33.880919Z",
"deletedBy" : "38851fad-b18b-4b73-9ecb-6a28bb1a00f8",
"deletedAt" : "2023-06-01T16:20:33.868Z",
"configIdByConfigTypeId" : {
"749895f5-056a-4105-9118-be5f9b339e93" : "b3c07ec9-a90b-4782-99b3-54618675a9c0"
},
"attributes" : [ ],
"model" : {
"clientIngress" : {
"host" : "myHost.com",
"port" : 8989
},
"edgeRouterAttributes" : [ ],
"edgeRouterHosts" : [ {
"edgeRouterId" : "ca3420ad-b2bc-4ee9-9c3e-943c37367f4c",
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
}
}, {
"edgeRouterId" : "3f2517c8-b1da-4c43-9ec1-9aa4753a7234",
"serverEgress" : {
"protocol" : "tcp",
"host" : "dmz.io",
"port" : 9001
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/services/6b192bd8-c157-43db-8536-66910b6d35e0"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/395aa58a-e8b7-43e7-ae6e-e878a5608da0",
"profile" : "parent"
},
"configs" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/configs?id=b3c07ec9-a90b-4782-99b3-54618675a9c0"
}
}
}
App Wans
Find App Wans
GET /v2/app-wans
Authorization
This endpoint requires read
action on the app-wan
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
name |
String |
true |
|
zitiId |
String |
true |
|
networkId |
String |
true |
|
serviceAttributes |
Array[String] |
true |
|
endpointAttributes |
Array[String] |
true |
|
postureCheckAttributes |
Array[String] |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans' -i -X GET \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIzZTZzWlpwRUdSNmZha2JFakdSU1h3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjU3MzliYmEzLTU0NGYtNGE3Yy05NThhLTRlMmFiZTUxMzRhZSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjI2NiwiZXhwIjoxNjg1NjM5ODY2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImU5NzViMmU2LTNhYTMtNGQ4Yy04M2RiLTEyZTg2Njc4Nzg5NlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjI2Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.ZJsNETCooHi5JfYA1lqSbzWkotyDmK7UTfsMRjN5sPkYIVgYFBedLx1eWkywfH0yhPaEP_QbSGrmql97_VUh2Deke3WDDoRIDR2NFpYPMqzTUN4yZQMlFhGtx3Wbpiz38iSFn68rinmGXUk-ivsJz05l188vwpfj9JQK_jMMP0vYrD2X0sVFjbmCwLw6oq8fMF-TPoKejE12rZuzVMoTP2p5n8SIH7TcqmAbe6G7G81-FYQSBJPg_gGM_lWOg90JAByUidvGuDwsWGXU15LOgh1coThbAtwCEUH7TB_bkVEqpORcuqqCH97r1WmliiREZ4m3WYEFGo6caNNOd4TrAw'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 6078
{
"_embedded" : {
"appWanList" : [ {
"id" : "35d2326a-086b-4a9b-be86-88f83a18f5e9",
"ownerIdentityId" : "99f9096d-36a4-45bb-9748-8496235694c3",
"createdBy" : "99f9096d-36a4-45bb-9748-8496235694c3",
"createdAt" : "2023-06-01T16:17:43.991786Z",
"updatedAt" : "2023-06-01T16:17:44.018367Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-32",
"zitiId" : "72a48f9d-5cc2-46dd-bec7-144d013828b4",
"networkId" : "ce567642-5519-48a6-987a-cda4aa178a55",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/ce567642-5519-48a6-987a-cda4aa178a55",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/35d2326a-086b-4a9b-be86-88f83a18f5e9"
}
}
}, {
"id" : "8ca2a6a7-89b0-4d57-afa3-90d7a40399a1",
"ownerIdentityId" : "e892aaa8-705b-48c2-8d9f-dc48d4ff9cc3",
"createdBy" : "e892aaa8-705b-48c2-8d9f-dc48d4ff9cc3",
"createdAt" : "2023-06-01T16:17:46.003541Z",
"updatedAt" : "2023-06-01T16:17:46.006473Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-59",
"zitiId" : "4b7c022f-a1ad-4333-bd84-6961a74e8fa8",
"networkId" : "34e8e0dd-84a2-43b5-81f0-1913727d8451",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/34e8e0dd-84a2-43b5-81f0-1913727d8451",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/8ca2a6a7-89b0-4d57-afa3-90d7a40399a1"
}
}
}, {
"id" : "9ebf629d-3afe-4b28-9012-8282b09525ff",
"ownerIdentityId" : "83930203-1abf-4fcb-af7e-0ddff49d081f",
"createdBy" : "83930203-1abf-4fcb-af7e-0ddff49d081f",
"createdAt" : "2023-06-01T16:17:45.636959Z",
"updatedAt" : "2023-06-01T16:17:45.768855Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-50",
"zitiId" : "1b11ed21-5b3c-4a16-950d-3cb4522f4d5f",
"networkId" : "bb18af00-8a18-48cc-b881-b333f0a30c3b",
"serviceAttributes" : [ "#service03", "#service02", "#service01" ],
"endpointAttributes" : [ "#usendpoints" ],
"postureCheckAttributes" : [ "#windows" ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/bb18af00-8a18-48cc-b881-b333f0a30c3b",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/9ebf629d-3afe-4b28-9012-8282b09525ff"
}
}
}, {
"id" : "9f3e9583-1bde-4632-bb4b-ea79c96940b5",
"ownerIdentityId" : "41177d3f-7347-4cbd-a27f-097bfb6c2358",
"createdBy" : "41177d3f-7347-4cbd-a27f-097bfb6c2358",
"createdAt" : "2023-06-01T16:17:44.496323Z",
"updatedAt" : "2023-06-01T16:17:45.351078Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Updated App Wan name",
"zitiId" : "70b5b79e-dab4-4610-a8b1-93f4158481c1",
"networkId" : "8ac8535d-ac43-4875-b195-f93f2371ac1a",
"serviceAttributes" : [ "#service03", "#service02", "#service01" ],
"endpointAttributes" : [ "#usendpoints" ],
"postureCheckAttributes" : [ "#windows" ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ac8535d-ac43-4875-b195-f93f2371ac1a",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/9f3e9583-1bde-4632-bb4b-ea79c96940b5"
}
}
}, {
"id" : "baf86019-0421-4298-bff2-b6e26ac1675a",
"ownerIdentityId" : "ec5e5a23-bfb8-411b-8d7c-21755547c392",
"createdBy" : "ec5e5a23-bfb8-411b-8d7c-21755547c392",
"createdAt" : "2023-06-01T16:17:39.405391Z",
"updatedAt" : "2023-06-01T16:17:39.433068Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-5",
"zitiId" : "1f0706d9-365f-4131-b489-bd62c3cff13b",
"networkId" : "e5dcba77-e6c1-445f-97aa-c0673f4a0a79",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/e5dcba77-e6c1-445f-97aa-c0673f4a0a79",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/baf86019-0421-4298-bff2-b6e26ac1675a"
}
}
}, {
"id" : "de96bc98-b520-4446-943b-c1e08a72e950",
"ownerIdentityId" : "88b2feda-c0cb-40ca-89ca-09a8da60bf3b",
"createdBy" : "88b2feda-c0cb-40ca-89ca-09a8da60bf3b",
"createdAt" : "2023-06-01T16:17:43.680552Z",
"updatedAt" : "2023-06-01T16:17:43.683840Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-23",
"zitiId" : "43343421-16fd-4a8e-b5cc-7f6f7329e6cb",
"networkId" : "05c356d2-48bb-4de3-9420-8d1eaa58f8f4",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/05c356d2-48bb-4de3-9420-8d1eaa58f8f4",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/de96bc98-b520-4446-943b-c1e08a72e950"
}
}
} ]
},
"_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/ba691b19-443a-464c-8a97-8a4e947835c0' -i -X GET \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJzYi1MVFdMOXBmRlBwb1dST1htRlBRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImU5MTA3MTkxLTc1OTctNDU3Ni04ZjIwLTFkZWQ3MWNmYjc0ZCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjI2NiwiZXhwIjoxNjg1NjM5ODY2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImJkYjFlZjQ4LWVkYzUtNDYyMS05MTgwLTdhNzZiNDY1Y2I3MFwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjI2Nn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.Przj5UUpBvpUrkCj6yLfseRc3rWM_xKYuOnkUALuB7CyhsoNg6Z05bhEODy7OFSfNaQ71DORQ2smfKtwt3Jg0sI49gRW1BgWziHl-4jKWLd8lV_v7mXixZNBCtDf7-O93p8bf28fabhZzRs69vdhqlLUIRQLfgteY1lVB6gn_Be0VwBNRfHBA3Ecaqu2G6r97NYGH2sW9eUDBG1qNmfMY7NLbEKPWgZ1M6UvwrnVnqySwpj6rcHSlU3C69073LKtI8SagDq7QPIeei_D5fnPlbIi6Bz02UUZvowa6ytTPVS3NzimbJj1mzvlgPu7dIqCwlmTUAnFWwzjvrxUlE2LYg'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 851
{
"id" : "ba691b19-443a-464c-8a97-8a4e947835c0",
"ownerIdentityId" : "afbfe0ea-923f-4778-827b-5eebf4e5f0c1",
"createdBy" : "afbfe0ea-923f-4778-827b-5eebf4e5f0c1",
"createdAt" : "2023-06-01T16:17:46.497857Z",
"updatedAt" : "2023-06-01T16:17:46.513750Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "appwan-68",
"zitiId" : "8dcd969a-5bdb-4355-8a74-aba7bc2ce414",
"networkId" : "a1feeb90-2d73-41af-8703-961928e98c67",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/a1feeb90-2d73-41af-8703-961928e98c67",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/ba691b19-443a-464c-8a97-8a4e947835c0"
}
}
}
Find App Wans
GET /v2/app-wans
Authorization
This endpoint requires read
action on the app-wan
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Request fields
No request body.
Response fields
Path | Type | Optional | Description |
---|---|---|---|
links |
Array[Object] |
true |
|
links[].rel |
String |
true |
|
links[].href |
String |
true |
|
links[].hreflang |
String |
true |
|
links[].media |
String |
true |
|
links[].title |
String |
true |
|
links[].type |
String |
true |
|
links[].deprecation |
String |
true |
|
links[].profile |
String |
true |
|
links[].name |
String |
true |
|
content |
Array[Object] |
true |
|
page |
Object |
true |
|
page.size |
Integer |
true |
|
page.totalElements |
Integer |
true |
|
page.totalPages |
Integer |
true |
|
page.number |
Integer |
true |
Hypermedia links
Path | Optional | Description |
---|---|---|
self |
true |
|
network |
true |
Embedded resources
Path | Type | Optional | Description |
---|---|---|---|
id |
String |
true |
|
ownerIdentityId |
String |
true |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
name |
String |
true |
|
zitiId |
String |
true |
|
networkId |
String |
true |
|
serviceAttributes |
Array[String] |
true |
|
endpointAttributes |
Array[String] |
true |
|
postureCheckAttributes |
Array[String] |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/app-wans' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ6bVhJUjZwbmRNcVdqcVVTNlNQRDB3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImE1OWRjM2Q0LWI0ZDYtNDFjZC05YTUxLTY5Nzc4NTRmNzIyOCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjI1NywiZXhwIjoxNjg1NjM5ODU3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjY4YzdmNWEwLWE0NDEtNGYxYS04NDg3LWNjNDQzYmY1YTM2YVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjI1N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.lO06AZlvvs4Auonhrj3WTAcRK5riniwFXzOvEXeE14NzP5Nv_MyDE45Q1ovp5F7lk-BTdtjFHhJK_ZK87gcHKmzZx-htOIchQilf5HVqot_K17V_7sed1EHvkTBK3LoWsgSP7uF1NmoCY5BdY0_Bu3DUYh0rZVhZZu9rOTWHBRDOM4kv-YSwuLYmWbiF-Hf8TlEfiA-WGeb6wQdl3iqim5hAnu6n5348A8cfd6VohYTg-lnYrgHRi15mMpsNMOCUfzXRuZJHagO2uusS7wNhRF5WUMj5TkvahzS61PEJHkSLCLbPm8F5TuklxUEpoVTDjsdJpzsNTTUfBm7Jay7x9g'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2252
{
"_embedded" : {
"appWanList" : [ {
"id" : "408c1bd5-cd8f-4ee3-ab8f-f5c525d43005",
"ownerIdentityId" : "b3c94c5e-fdb7-428e-85e3-e4fd957f8d4d",
"createdBy" : "b3c94c5e-fdb7-428e-85e3-e4fd957f8d4d",
"createdAt" : "2023-06-01T16:17:36.773744Z",
"updatedAt" : "2023-06-01T16:17:36.846213Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Find Test AppWan 1",
"zitiId" : "20496dda-d931-4bbe-bb54-7e1b5ff2e3d6",
"networkId" : "6246a208-bcae-4cff-9abc-d843e9228e16",
"serviceAttributes" : [ "#seAttr1", "#seAttr2" ],
"endpointAttributes" : [ "#epAttr2", "#epAttr1" ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6246a208-bcae-4cff-9abc-d843e9228e16",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/408c1bd5-cd8f-4ee3-ab8f-f5c525d43005"
}
}
}, {
"id" : "da356f95-c53c-4a1a-b724-0be48c1eb52d",
"ownerIdentityId" : "b3c94c5e-fdb7-428e-85e3-e4fd957f8d4d",
"createdBy" : "b3c94c5e-fdb7-428e-85e3-e4fd957f8d4d",
"createdAt" : "2023-06-01T16:17:36.878932Z",
"updatedAt" : "2023-06-01T16:17:36.914564Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Find Test AppWan 2",
"zitiId" : "417cc472-c2cd-47d3-b61b-29187277d214",
"networkId" : "6246a208-bcae-4cff-9abc-d843e9228e16",
"serviceAttributes" : [ "#seAttr1", "#seAttr3" ],
"endpointAttributes" : [ "#epAttr1" ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6246a208-bcae-4cff-9abc-d843e9228e16",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/da356f95-c53c-4a1a-b724-0be48c1eb52d"
}
}
} ]
},
"_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.eyJqdGkiOiJUZGQxX09VQlNJVm02THowQWlESXdRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImIzOTI0MTcxLWExM2EtNGQxYi1hZTIxLTZhYzQ4NGRkMDBkNyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjI2NywiZXhwIjoxNjg1NjM5ODY3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImFmOWZkYTJhLTUxMjAtNDAyZS1iMGRhLWFiNDQ0MzJiYmM3NFwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjI2N31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.LcrCnrxsK7lgPg6NM8XQqpVGJey8CPTLLhtX3Kdk9fo9y9iDcftXk5aSmpnxnIphrU__RWcVghEi87HCP5eoV8zKDSoKFNiSC9d1SOii6Rt8t0OQx7bc4G9le5nXBGWCdUzclFKCbgWWmqoLtB6a2L1z34jYpKRZxaJ5bX6NYaqbRl-qJFwKz12RJoUBLMTRLJnDm1mUvrds1NOp2l6R-WGDBdCGzx9Ux8zPF4Vyfca4BHRICDHFubn7QSVJPt_6G1YI20O4visndb0c8IzWQcFCgV7F2dyh0ckJTbjkI9T7N-guIAVTgwNkKZlSvXRN58Y5a1vC_PYkOPRwk8SSAQ' \
-d '{"networkId":"07c2e65e-6150-47af-840a-44cb0c63902f","name":"Test App Wan 1685636267","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: 1122
{
"id" : "b45c94a5-cec0-4545-9fec-48d54f97f6bd",
"ownerIdentityId" : "b3924171-a13a-4d1b-ae21-6ac484dd00d7",
"createdBy" : "b3924171-a13a-4d1b-ae21-6ac484dd00d7",
"createdAt" : "2023-06-01T16:17:47.786549Z",
"updatedAt" : "2023-06-01T16:17:47.830576Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Test App Wan 1685636267",
"zitiId" : "3567f70b-99a6-46a3-9719-1630b161adf2",
"networkId" : "07c2e65e-6150-47af-840a-44cb0c63902f",
"serviceAttributes" : [ "#service01" ],
"endpointAttributes" : [ "@endpoint-97", "#accessclients" ],
"postureCheckAttributes" : [ "#windows" ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/07c2e65e-6150-47af-840a-44cb0c63902f",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/b45c94a5-cec0-4545-9fec-48d54f97f6bd"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/80e40979-8912-478f-b24e-b325ec064a3b",
"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/9f3e9583-1bde-4632-bb4b-ea79c96940b5' -i -X PUT \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJrdHc4WXJBV1BoTGxkWjVudy1kNk9RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImNiOGVjZjJjLWI5NDctNDU5Mi05NTFkLThiOTcxMmQxZmM1OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjI2NCwiZXhwIjoxNjg1NjM5ODY0LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjhkNzI5NGM1LTMzNDktNGVlYy1hZjQ2LThjMGZjZmVlNTlmZVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjI2NH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.g4tWIBFhq00cchN3XBGcNAoibiOIVTD34Yz5IuM5ROFlDUU5MdJFC_6iZEDu5CAuEA4-VX0p4KflGGh7Bk1eiWRT4nglZiJo2AQGu-ECdNuSOVWfyP7O79r_DOOdvV_UfkvzHchmnK2NH6k_4Ok1g8cR4k8FO6ASZCvlGLxDjuEqEqQscXQDHHYp2jNmCH3CcyxvsNoc6c1mBwUIkZHFHjF90otPbmwNmTJhd6_ig9I15dQsauxkYDIgG3LzeNYRRqBqoXUdqmCLk34ryUUIWWC1X_Stiajlbya86GQb9hM8MDy5CsQAlJ3MTu3BqOOx2X6rbGDhHa0tAA0heeCNtw' \
-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: 1129
{
"id" : "9f3e9583-1bde-4632-bb4b-ea79c96940b5",
"ownerIdentityId" : "41177d3f-7347-4cbd-a27f-097bfb6c2358",
"createdBy" : "41177d3f-7347-4cbd-a27f-097bfb6c2358",
"createdAt" : "2023-06-01T16:17:44.496323Z",
"updatedAt" : "2023-06-01T16:17:45.351078Z",
"deletedBy" : null,
"deletedAt" : null,
"name" : "Updated App Wan name",
"zitiId" : "70b5b79e-dab4-4610-a8b1-93f4158481c1",
"networkId" : "8ac8535d-ac43-4875-b195-f93f2371ac1a",
"serviceAttributes" : [ "#service03", "#service02", "#service01" ],
"endpointAttributes" : [ "#usendpoints" ],
"postureCheckAttributes" : [ "#windows" ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/8ac8535d-ac43-4875-b195-f93f2371ac1a",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/9f3e9583-1bde-4632-bb4b-ea79c96940b5"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/36335d8f-7b59-4b2d-99a3-2bd85e21d222",
"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/e92640fd-7401-4202-8914-108a2b1be13c' -i -X DELETE \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJRenA3V3o3Vms2bTJGTWRERmFDaU5RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImJlMDg3NGM2LWJhMTEtNDBiNi1hNWEzLWYwZjY2NWE4YTc2NyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjI2MiwiZXhwIjoxNjg1NjM5ODYyLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjg3OTZiNWJmLTkxNTgtNGE1Yy1hYzUwLTFhMTlhMmNhZjAyNVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjI2Mn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.OP0h9jBB_lQ_dOr9CSgV8w34Tlj2aaek30IuTEKyFZmpcngE0PwM9M5pDf_E52iB0WGeN-XpxDMrQkLoqBVGbIchFLUKiqDprRM3RP9weK_Vfy0tpRhqvT8wSwpobf0AUalYfmW83bVzoUf1EZzA9sz_9KAA4AEPgx1BnUPiCJ1z8ZCZeTIieQWMtXg_Ns9zKdZaGt2xP_5nKQcccEwQrSOuViH5WEBqCGYPW2ULQ8avuuhC6utZOeuQMQMk86ZND0ILdu1G0SqBssKI3ZwjfiIOSFsDC07guCU0GhwCz0sSDOdPTfN2YqIoOxhTL77FJ07v56cSZ9Ag3qI97YCc5A'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1073
{
"id" : "e92640fd-7401-4202-8914-108a2b1be13c",
"ownerIdentityId" : "a9c2c4a6-d049-4543-bdc9-abf8a76ef80b",
"createdBy" : "a9c2c4a6-d049-4543-bdc9-abf8a76ef80b",
"createdAt" : "2023-06-01T16:17:42.888645Z",
"updatedAt" : "2023-06-01T16:17:43.193767Z",
"deletedBy" : "be0874c6-ba11-40b6-a5a3-f0f665a8a767",
"deletedAt" : "2023-06-01T16:17:43.018Z",
"name" : "appwan-14",
"zitiId" : null,
"networkId" : "0a0e9796-b2d3-46d1-b7b9-0796caa62d99",
"serviceAttributes" : [ ],
"endpointAttributes" : [ ],
"postureCheckAttributes" : [ ],
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/0a0e9796-b2d3-46d1-b7b9-0796caa62d99",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/app-wans/e92640fd-7401-4202-8914-108a2b1be13c"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/3bdc5e04-61e8-4d8c-8914-e238e0bcf3de",
"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.eyJqdGkiOiI0UUlqWnNsYTlTV21XelpLLTNYY2VRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjNkZjAxZWU0LTRjODItNDk5Yi1hOGQwLTkxZTdkYzk5OGNiMSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM2MSwiZXhwIjoxNjg1NjM5OTYxLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjBkNDZlY2EzLWEyZjItNDMxZS05MzlkLTQ2ZTQyYzlkMDI2OVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM2MX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.PmRDkHLDOBAbMGnpTTnSaAzug2dAiAZEhlV5MY-ysmIX32TWquSnfNWX6KvqO2phiLJg_A6foyvqRgUbkInYl6JyitmmukqnrTtAPMbEnJgmvCS6K8Fxaisr9KxaEz1FKLfKMOuG5ZoP0vLs2xBEo4X-J-i8_3vaoZAw5324tKB3O_gNg3n07_uTCS1K6DpjiXFK1TmuXhUzEKoBrRYO8ooG7be-p_JX5vp1mnWKJ7h76mBp70X1zyC2xxAEFPgIQa21PLF3dZ4octui9b7saEnzP7H70A85e2v-vAmqehOrAHQrGRTkS4QM-Oe2TeR5HYczr9noIzBIz4WauhUgew'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 2284
{
"_embedded" : {
"postureCheckList" : [ {
"id" : "0428d988-8424-485a-996f-fc16c15fc269",
"zitiId" : "zitiId-fake-cc1f267f-1b2f-4c50-8349-1e608476fcad",
"name" : "Find Test Posture Check 1",
"networkId" : "f30732ad-2844-4f64-94df-f782dd1d2903",
"type" : "DOMAIN",
"ownerIdentityId" : "547999dd-9be8-41d7-b95f-b77482394641",
"createdBy" : "547999dd-9be8-41d7-b95f-b77482394641",
"createdAt" : "2023-06-01T16:19:21.406739Z",
"updatedAt" : "2023-06-01T16:19:21.406739Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#attr2", "#attr1" ],
"data" : {
"domains" : [ "abc.com" ]
},
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f30732ad-2844-4f64-94df-f782dd1d2903",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/0428d988-8424-485a-996f-fc16c15fc269"
}
}
}, {
"id" : "3a25c790-88b1-4d33-aeb5-2f3f301d8e85",
"zitiId" : "zitiId-fake-86934e69-3d2b-4652-9c7d-527211f81839",
"name" : "Find Test Posture Check 2",
"networkId" : "f30732ad-2844-4f64-94df-f782dd1d2903",
"type" : "DOMAIN",
"ownerIdentityId" : "547999dd-9be8-41d7-b95f-b77482394641",
"createdBy" : "547999dd-9be8-41d7-b95f-b77482394641",
"createdAt" : "2023-06-01T16:19:21.421267Z",
"updatedAt" : "2023-06-01T16:19:21.421267Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#attr3", "#attr1" ],
"data" : {
"domains" : [ "abc.com" ]
},
"_links" : {
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/f30732ad-2844-4f64-94df-f782dd1d2903",
"profile" : "parent"
},
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/3a25c790-88b1-4d33-aeb5-2f3f301d8e85"
}
}
} ]
},
"_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/e544b5ed-0215-4d04-bea2-3b0e5c42aa68' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJvWlE2WVNXcS1iYURwTUtuQjV0eDR3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImFkMWYxNDI4LWZjNzctNDY4MC1iZmJlLWUyOGY3ZTlkZDFkYSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQyNiwiZXhwIjoxNjg1NjQwMDI2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImM0M2U1MmJmLTBjZDAtNDc0OC1iMjE4LTk5ZmU4NWQ1NTI0NVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQyNn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.dR9BjsJxra_evpufBy5xdWwx-DvTej2gouAsq0WjsDqWQFn7qET-cByxF2ckC-skHAPiCGYY9LGFFX8fPJ1fGOI6xGuaUNFtM7FaAiiI9SP3e25cSoKOeFaxwDktPmaFIVSqNMAX0B6Nw-PxMX3v75_K7-FjRGSKYVDN_yh5x8XGP1lYAnKj6z-_2j7M7fpIv8lSwrwmeE0m0wkhYXanlFwLKufhZTaOrAPRJu2cE_UuGEIO1uMENgus2mNlLmwzyi4BFnu0dnnzBcjF4T8215XwMpNXd4HvysGYcEaVj_7GUY_Zg9KjE0rw6iYtQQWeIM-lbgNvVeNeoqCsv0A21w'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1366
{
"id" : "e544b5ed-0215-4d04-bea2-3b0e5c42aa68",
"zitiId" : "ziti.id.6574a7onubn",
"name" : "My Posture Check 22464833186454956",
"networkId" : "6d1c205a-1f02-4058-b245-3d75862f015a",
"type" : "PROCESS_MULTI",
"ownerIdentityId" : "c575057f-eb3b-4a21-b8f7-8a966da56b88",
"createdBy" : "c575057f-eb3b-4a21-b8f7-8a966da56b88",
"createdAt" : "2023-06-01T16:20:25.798412Z",
"updatedAt" : "2023-06-01T16:20:25.798412Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#Attr-1", "#Attr-2" ],
"data" : {
"processes" : [ {
"osType" : "WindowsServer",
"path" : "c:\\more-programs",
"hashes" : [ "5eb63bbbe01eeed093cb22bb8f5acdc3", "feb63bbbe01eeed093cb22bb8f5acdc5", "aeb63bbbe01eeed093cb22bb8f5acdcf" ],
"signerFingerprints" : [ "SIGNED-iwenc02ic02303cj203ji", "SIGNED-f293hc20982y5028c5j05", "SIGNED-fvpoi2hc082c434235cv" ]
}, {
"osType" : "Windows",
"path" : "c:\\programs",
"hashes" : [ ],
"signerFingerprints" : [ ]
} ],
"semantic" : "AnyOf"
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/e544b5ed-0215-4d04-bea2-3b0e5c42aa68"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6d1c205a-1f02-4058-b245-3d75862f015a",
"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.eyJqdGkiOiJpalptOXl3YW04ZzI4OU96MHMydU5RIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImM1NzUwNTdmLWViM2ItNGEyMS1iOGY3LThhOTY2ZGE1NmI4OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQyNSwiZXhwIjoxNjg1NjQwMDI1LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjI5NzkzZTJjLTc3MjMtNDQ1OC05MDRiLTQ3YTlmNzAxMGU5MlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQyNX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.I_ftl_WIFYq7jG15FjAv1IKrV7slZRESrx2nbKOsPB5TLLzYVXDS1MZT1futjx2mNuenjma6lHTYKgItShTI4oRArj7YEdvCjFHp9CrdnfN9WcfzGw-Gtqt_a70nAGiMbXMsWlbQ7D5SquGpORlZNFUixQ4D7td06B6eLMDNqUXQ_uOx6BYAkzki9v02I_Y4gFg7RORtOXPHZvzZVjGjVs8TlJImhzdqjK6hEly0VaOpCKbG7ej7E-G8OmbSgrOOHSWxVSgtQ15JSsrrD-FD88a7p5KhhGZ0dmR6WCKmeod_kg3Z0Us46xz1fUElWpewD5IuuhrZX9FyhFS_bJRHVw' \
-d '{"name":"My Posture Check 22464833186454956","networkId":"6d1c205a-1f02-4058-b245-3d75862f015a","type":"PROCESS_MULTI","attributes":["#Attr-1","#Attr-2"],"data":{"processes":[{"osType":"Windows","path":"c:\\programs","hashes":null,"signerFingerprints":null},{"osType":"WindowsServer","path":"c:\\more-programs","hashes":["5eb63bbbe01eeed093cb22bb8f5acdc3","feb63bbbe01eeed093cb22bb8f5acdc5","aeb63bbbe01eeed093cb22bb8f5acdcf"],"signerFingerprints":["SIGNED-iwenc02ic02303cj203ji","SIGNED-f293hc20982y5028c5j05","SIGNED-fvpoi2hc082c434235cv"]}],"semantic":"AnyOf"}}'
Example response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 1044
{
"id" : "e544b5ed-0215-4d04-bea2-3b0e5c42aa68",
"zitiId" : "ziti.id.6574a7onubn",
"name" : "My Posture Check 22464833186454956",
"networkId" : "6d1c205a-1f02-4058-b245-3d75862f015a",
"type" : "PROCESS_MULTI",
"ownerIdentityId" : "c575057f-eb3b-4a21-b8f7-8a966da56b88",
"createdBy" : "c575057f-eb3b-4a21-b8f7-8a966da56b88",
"createdAt" : "2023-06-01T16:20:25.798412Z",
"updatedAt" : "2023-06-01T16:20:25.798412Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#Attr-1", "#Attr-2" ],
"data" : {
"processes" : [ {
"osType" : "Windows",
"path" : "c:\\programs",
"hashes" : null,
"signerFingerprints" : null
}, {
"osType" : "WindowsServer",
"path" : "c:\\more-programs",
"hashes" : [ "5eb63bbbe01eeed093cb22bb8f5acdc3", "feb63bbbe01eeed093cb22bb8f5acdc5", "aeb63bbbe01eeed093cb22bb8f5acdcf" ],
"signerFingerprints" : [ "SIGNED-iwenc02ic02303cj203ji", "SIGNED-f293hc20982y5028c5j05", "SIGNED-fvpoi2hc082c434235cv" ]
} ],
"semantic" : "AnyOf"
}
}
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/e544b5ed-0215-4d04-bea2-3b0e5c42aa68' -i -X PATCH \
-H 'Content-Type: application/json' \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJHaFVDb3VRejhabUk3czFMZzZnaWF3IiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImVjOTgwNGZlLTAwMmQtNDc5Yi1iMDZkLTY0OGUwMjQzNTNhOCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQyNiwiZXhwIjoxNjg1NjQwMDI2LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjAxNDZiYzQzLTc1M2ItNDhkMS1hNzljLTMyM2ZjNjllMGQxN1wiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQyNn1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.TziDECRxw9peA5qv8HG_BdQTFpg4uAbGMYqVI9ijetEelmDdeDkaFY_7W4MBrTtb7LEQGdzGX234aTTQMfFqm3997ag8KO7X2tOnjd8XtIaT4MgfcriCM4SY55lz3RQ0nF_U8-s0eNPQ8D_P7ngTeIGIrcDsnoLvXJ0NihvXhcBWpUUAmMt-9xoVSj9yYFT5baS3vZJw3YnGVr7A5OdKR7FObjX-Of5TFWMHZdzTp-SdWtRBmj-qtdSBjcTi1Jb64NlHHretZ50xu8vuaRLberAUT_iVMoDXlp-T2ub_fKDf6tzUaSVnNCXS4_5jD56HQfW3dr3bk7S2xfcbUWJtGA' \
-d '{"name":"Our Service 22464833186454956","attributes":["#Attr-4","#Attr-2"]}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1567
{
"id" : "e544b5ed-0215-4d04-bea2-3b0e5c42aa68",
"zitiId" : "ziti.id.6574a7onubn",
"name" : "Our Service 22464833186454956",
"networkId" : "6d1c205a-1f02-4058-b245-3d75862f015a",
"type" : "PROCESS_MULTI",
"ownerIdentityId" : "c575057f-eb3b-4a21-b8f7-8a966da56b88",
"createdBy" : "c575057f-eb3b-4a21-b8f7-8a966da56b88",
"createdAt" : "2023-06-01T16:20:25.798412Z",
"updatedAt" : "2023-06-01T16:20:26.696953Z",
"deletedBy" : null,
"deletedAt" : null,
"attributes" : [ "#Attr-4", "#Attr-2" ],
"data" : {
"processes" : [ {
"osType" : "WindowsServer",
"path" : "c:\\more-programs",
"hashes" : [ "5eb63bbbe01eeed093cb22bb8f5acdc3", "feb63bbbe01eeed093cb22bb8f5acdc5", "aeb63bbbe01eeed093cb22bb8f5acdcf" ],
"signerFingerprints" : [ "SIGNED-iwenc02ic02303cj203ji", "SIGNED-f293hc20982y5028c5j05", "SIGNED-fvpoi2hc082c434235cv" ]
}, {
"osType" : "Windows",
"path" : "c:\\programs",
"hashes" : [ ],
"signerFingerprints" : [ ]
} ],
"semantic" : "AnyOf"
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/e544b5ed-0215-4d04-bea2-3b0e5c42aa68"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6d1c205a-1f02-4058-b245-3d75862f015a",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/1e53a6b2-44e8-434d-99b0-b0abe6d3897e",
"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 |
|
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/e544b5ed-0215-4d04-bea2-3b0e5c42aa68' -i -X DELETE \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJzd1dWUjVraHJ5VFpuSk45U3BRVXVRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImM4MDJjODM2LTgxODktNDc4MS04MDRiLWE1MGNlY2E1MDY3OSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjQyNywiZXhwIjoxNjg1NjQwMDI3LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcImFmMjY3MjMwLTJkZjYtNGFkZC04ZjdlLWQ3ZmVjNGRkZmQzZVwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjQyN31dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.KDCN5Z2sV7reM06oEvudxBfJx-MPaLGvyqXR_Vl-6Jvno1kvvtkqgyUNld7pVqWEQ0mWf1F514NM2KbbGT-3WcZv1A5BAivTN6i-kMptTC4hdErobKmUPSYN5SFfg4beqIcrX6QjHIyoRHfdhFJcnfLk6Aj5H3jdiiGm7V4gM6af8bRs0ZGS27qPKeg8p9Ti90l9ovTMUOxp4K3gd2FlhIrgNmck_zNDZRcSRU7KIfLWdClab7-7_qvrJztWlcftPvwNYrPjrvtleJmOzRZ1WCqpCvULPdtI7YqDu9BkqfzHtyda52LRmPedVaF8GwKisc03zvCg0P3sAmacD3ii3Q'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 1603
{
"id" : "e544b5ed-0215-4d04-bea2-3b0e5c42aa68",
"zitiId" : "ziti.id.6574a7onubn",
"name" : "Our Service 22464833186454956",
"networkId" : "6d1c205a-1f02-4058-b245-3d75862f015a",
"type" : "PROCESS_MULTI",
"ownerIdentityId" : "c575057f-eb3b-4a21-b8f7-8a966da56b88",
"createdBy" : "c575057f-eb3b-4a21-b8f7-8a966da56b88",
"createdAt" : "2023-06-01T16:20:25.798412Z",
"updatedAt" : "2023-06-01T16:20:27.080756Z",
"deletedBy" : "c802c836-8189-4781-804b-a50ceca50679",
"deletedAt" : "2023-06-01T16:20:27.080Z",
"attributes" : null,
"data" : {
"processes" : [ {
"osType" : "WindowsServer",
"path" : "c:\\more-programs",
"hashes" : [ "5eb63bbbe01eeed093cb22bb8f5acdc3", "feb63bbbe01eeed093cb22bb8f5acdc5", "aeb63bbbe01eeed093cb22bb8f5acdcf" ],
"signerFingerprints" : [ "SIGNED-iwenc02ic02303cj203ji", "SIGNED-f293hc20982y5028c5j05", "SIGNED-fvpoi2hc082c434235cv" ]
}, {
"osType" : "Windows",
"path" : "c:\\programs",
"hashes" : [ ],
"signerFingerprints" : [ ]
} ],
"semantic" : "AnyOf"
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/posture-checks/e544b5ed-0215-4d04-bea2-3b0e5c42aa68"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/networks/6d1c205a-1f02-4058-b245-3d75862f015a",
"profile" : "parent"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/3c818d4d-cd9f-4aef-aa99-063d8d97fe9d",
"title" : "Delete PostureCheck",
"profile" : "meta"
}
}
}
Certificate Authorities
Find Certificate Authorities
GET /v2/certificate-authorities
Authorization
This endpoint requires read
action on the certificate-authority
resource type.
Path parameters
No parameters.
Query parameters
Supports standard paging query parameters.
Parameter | Type | Optional | Description |
---|---|---|---|
isAutoCaEnrollment |
Boolean |
true |
Deprecated.. |
isOttCaEnrollmentEnabled |
Boolean |
true |
Deprecated.. |
isAuthEnabled |
Boolean |
true |
Deprecated.. |
isVerified |
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 |
|
createdBy |
String |
true |
|
createdAt |
String |
true |
|
updatedAt |
String |
true |
|
deletedBy |
String |
true |
|
deletedAt |
String |
true |
|
networkId |
String |
true |
|
zitiId |
String |
true |
|
name |
String |
true |
|
endpointAttributes |
Array[String] |
true |
|
verificationToken |
String |
true |
|
fingerprint |
String |
true |
|
jwt |
String |
true |
|
certPem |
String |
true |
|
identityNameFormat |
String |
true |
|
verified |
Boolean |
true |
|
authEnabled |
Boolean |
true |
|
autoCaEnrollmentEnabled |
Boolean |
true |
|
ottCaEnrollmentEnabled |
Boolean |
true |
Example request
$ curl 'https://gateway.production.netfoundry.io/core/v2/certificate-authorities' -i -X GET \
-H 'Accept: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJsb0ZRVDFjQU1xT1RoY3h5Z2FrNjVBIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImVkNDE3ZTEzLTNlYWYtNGFiYS05NWZkLWViZThhN2ZlMDE5OCIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM1MCwiZXhwIjoxNjg1NjM5OTUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjNhOGZkZjgwLWFkNGEtNDJlZC1hODNhLTg3MGZkODUwZWM5OFwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.GDoIsxZg7zqL8BFPnHLKFHeTIc5e5_WfbqywbSHeQWVXKLDrXmr7izpSSUmfkbHH-MHlDW1Eq2DqkBBcmERDuY42w6sflQZuktXg7BnLWg_vfEGBkd2PkweFLba5tbkJftRbo4P4qcyAquOtdP6PoinU66rDfaXkH-MMwwHkDQG71zckHqWhVOtRgImaGpTO1U9atpNUZ97ARBXEJ7-naedeiCX4NCIWTMyq8P2mPzmf2PttOfbM3l-NcIbIwrciy9jBqpB7EJUK-ijakgVD-1vd8vQEqCNrvdxbyoCwcvhWgR5VJQzFIjiAHEyWUMO2A8cLNHKWKhrrtrfTiGjGWA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json
Content-Length: 15456
{
"_embedded" : {
"certificateAuthorityList" : [ {
"id" : "2e36f493-867a-4d6f-acb1-0da713d8d4fc",
"ownerIdentityId" : "5a59e33e-5213-4673-a266-3b78a2d88a01",
"createdBy" : "5a59e33e-5213-4673-a266-3b78a2d88a01",
"createdAt" : "2023-06-01T16:19:09.538036Z",
"updatedAt" : "2023-06-01T16:19:09.539568Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "7ed09b4a-f5af-4983-ad8f-cfceac2e38f3",
"zitiId" : "ziti-id-7aa99235-6ad7-4db1-825c-5e269e23b768",
"name" : "ca-340",
"endpointAttributes" : [ ],
"verificationToken" : "token",
"fingerprint" : "fingerprint",
"jwt" : "jwt",
"certPem" : "fake-pem",
"identityNameFormat" : "name-format",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/2e36f493-867a-4d6f-acb1-0da713d8d4fc"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/7ed09b4a-f5af-4983-ad8f-cfceac2e38f3"
}
}
}, {
"id" : "4a6daa3b-5c68-4d6c-9f39-6a4cc1096490",
"ownerIdentityId" : "3f6b3065-6b53-485a-966d-005e56f0b324",
"createdBy" : "3f6b3065-6b53-485a-966d-005e56f0b324",
"createdAt" : "2023-06-01T16:19:10.179092Z",
"updatedAt" : "2023-06-01T16:19:10.180729Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "58542c15-c15a-45e4-8698-1fa5489d55d2",
"zitiId" : "ziti-id-4ceadd10-ec65-4011-ad2b-5f63b2fb1b22",
"name" : "ca-390",
"endpointAttributes" : [ ],
"verificationToken" : "token",
"fingerprint" : "fingerprint",
"jwt" : "jwt",
"certPem" : "fake-pem",
"identityNameFormat" : "name-format",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/4a6daa3b-5c68-4d6c-9f39-6a4cc1096490"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/58542c15-c15a-45e4-8698-1fa5489d55d2"
}
}
}, {
"id" : "58ef369a-9bc1-44c7-acdc-ac85df9f761f",
"ownerIdentityId" : "ee59ebef-2f71-45c2-a63a-ed164f999b24",
"createdBy" : "ee59ebef-2f71-45c2-a63a-ed164f999b24",
"createdAt" : "2023-06-01T16:19:09.337728Z",
"updatedAt" : "2023-06-01T16:19:09.350121Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "419a6450-7469-4895-98d0-4d74df1972bf",
"zitiId" : "ziti-id-0268ddf7-9726-4954-b008-7ab3d3d6680d",
"name" : "v8-network-ca",
"endpointAttributes" : [ ],
"verificationToken" : "token",
"fingerprint" : "fingerprint",
"jwt" : "jwt",
"certPem" : "fake-pem",
"identityNameFormat" : "name-format",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/58ef369a-9bc1-44c7-acdc-ac85df9f761f"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/419a6450-7469-4895-98d0-4d74df1972bf"
}
}
}, {
"id" : "5c38fb31-6699-441e-8e47-0844e48739ec",
"ownerIdentityId" : "337764b2-b39d-401e-88dc-bd0020619f7b",
"createdBy" : "337764b2-b39d-401e-88dc-bd0020619f7b",
"createdAt" : "2023-06-01T16:19:09.704841Z",
"updatedAt" : "2023-06-01T16:19:09.707223Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "59899922-0837-4af5-b91e-76890415b7f4",
"zitiId" : "1ba7c742-d207-4eef-b44a-88646643949c",
"name" : "Test ca 02",
"endpointAttributes" : [ "#secureclients" ],
"verificationToken" : null,
"fingerprint" : null,
"jwt" : null,
"certPem" : "-----BEGIN CERTIFICATE-----MIIEujCCAqKgAwIBAgIRAL9YVv7hhgdfje0+onHqzogwDQYJKoZIhvcNAQELBQAwczELMAkGA1UEBhMCVVMxEjAQBgNVBAcTCUNoYXJsb3R0ZTETMBEGA1UEChMKTmV0Rm91bmRyeTEQMA4GA1UECxMHQURWLURFVjEpMCcGA1UEAxMgTmV0Rm91bmRyeSwgSW5jLiBJbnRlcm1lZGlhdGUgQ0EwHhcNMjEwMTE1MjEwMDU3WhcNMjIwMTE1MjEwMTU3WjBcMQswCQYDVQQGEwJVUzESMBAGA1UEBxMJQ2hhcmxvdHRlMRMwEQYDVQQKEwpOZXRGb3VuZHJ5MRAwDgYDVQQLEwdBRFYtREVWMRIwEAYDVQQDEwlrWHdMajA0WFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJDRmC32XN31LU04Q4uh2uco+78sxCg8BzBbxQ7LrXRqdnfeuskoOx+b8OcA9Af4U9Co8rqrPaUR3y1bME5fIhZTFjesV3Z+V+dRyLlQQ6/tXybBwYeBUUwE/NSECx5jKXbLX3WgLISffxFToB5FVhX2okCkOPOOXiirKwUe9pCfWafnEJAevjH001nEMDh2Ir5Yny6PrU3SgRj9F1+aZ3kuattq89JybUofN1HHTGPOAUUzXIudhhFQC2HYGABGbxvoWBSFmM6i+oWHS9GOX5YnfApcbRDEiWHnGfQEPCOG3sRcA/NfPwV9wChyPMadgXNl+Pc9aFEOj20qmk/LK5AgMBAAGjYDBeMA4GA1UdDwEB/wQEAwIF4DAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBRERYGCL0A1YBMCUbxwz4sAk6cfkTAfBgNVHSMEGDAWgBTFYtjJ5IqMPUdx6X0KdeZqZratzzANBgkqhkiG9w0BAQsFAAOCAgEAekd7/VB1nWpLa/2iu7xz8C0MPnkczH4qvWSgoJ7tJ+bXqT4+CL3T4jk7kRFxAj6YXDaTyrhzlwtNxmmH0fcJ0NNXF+86pAAJWbjzgpy20YOy++R4FgJM0Mai6FRDeec94BdFV90ZDxfQ7UJtV3DXtzZAVZGUMo/hsPWi0g2LzJxj2jScugjHBl5rbdc8eQdenAg4Es47dac7sF4XBLocYZeyei4LxaAgVW+R8RmU+VrJv8HcTiRaweo5/47DxYTCg69LvKThf/ow2nS+BW1bHEyD7EI++UuBk/qwoSEtjpMaXlPzN4hMk/Ht7JeifYvWloz2VgJQm8C7O4jplUcVmHkL2OgpGhXiEidA5w1xBInuohQQIK+jSFh7sxG/Ck0EVNIE9BfOc6hhM6emL0xFDoNdSXEGLs4Fm4IaazJJxREJZoB2Cb5c7MKvO6EMF08xG2JNf2P9QiQu6nWZFmyh3wUKY6/LW6YlOhPAmbQ/gu0q+0UuzgnJU61vrIedekDK8q4ePvFZDEsXKg+gA14d5eGh4dRrOqvUZtyE8r6g8vUveQsOpjt7BML6p7kSXW6OGe2K5FrnF2vhJSbHd/zb+VFhm355ssqubCpNpfnrHGoquQVbXJ3HyFEQ0i+BugEUDDE2lIofz/qlq9x+vtb13CMIy1w5WLo3pCVTsufnZmo=-----END CERTIFICATE-----",
"identityNameFormat" : "[commonName] - [identityId]",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/5c38fb31-6699-441e-8e47-0844e48739ec"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/59899922-0837-4af5-b91e-76890415b7f4"
}
}
}, {
"id" : "84d006fe-ab09-4b6f-b62a-088c49144b42",
"ownerIdentityId" : "3ded30ef-d27e-4018-9976-3b5afedfd3d3",
"createdBy" : "3ded30ef-d27e-4018-9976-3b5afedfd3d3",
"createdAt" : "2023-06-01T16:19:09.615932Z",
"updatedAt" : "2023-06-01T16:19:09.622338Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "7ed09b4a-f5af-4983-ad8f-cfceac2e38f3",
"zitiId" : "48c6c1d1-ac24-426d-93f1-be2e87d4ca5b",
"name" : "Test ca 02",
"endpointAttributes" : [ "#secureclients" ],
"verificationToken" : null,
"fingerprint" : null,
"jwt" : null,
"certPem" : "-----BEGIN CERTIFICATE-----MIIEujCCAqKgAwIBAgIRAL9YVv7hhgdfje0+onHqzogwDQYJKoZIhvcNAQELBQAwczELMAkGA1UEBhMCVVMxEjAQBgNVBAcTCUNoYXJsb3R0ZTETMBEGA1UEChMKTmV0Rm91bmRyeTEQMA4GA1UECxMHQURWLURFVjEpMCcGA1UEAxMgTmV0Rm91bmRyeSwgSW5jLiBJbnRlcm1lZGlhdGUgQ0EwHhcNMjEwMTE1MjEwMDU3WhcNMjIwMTE1MjEwMTU3WjBcMQswCQYDVQQGEwJVUzESMBAGA1UEBxMJQ2hhcmxvdHRlMRMwEQYDVQQKEwpOZXRGb3VuZHJ5MRAwDgYDVQQLEwdBRFYtREVWMRIwEAYDVQQDEwlrWHdMajA0WFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJDRmC32XN31LU04Q4uh2uco+78sxCg8BzBbxQ7LrXRqdnfeuskoOx+b8OcA9Af4U9Co8rqrPaUR3y1bME5fIhZTFjesV3Z+V+dRyLlQQ6/tXybBwYeBUUwE/NSECx5jKXbLX3WgLISffxFToB5FVhX2okCkOPOOXiirKwUe9pCfWafnEJAevjH001nEMDh2Ir5Yny6PrU3SgRj9F1+aZ3kuattq89JybUofN1HHTGPOAUUzXIudhhFQC2HYGABGbxvoWBSFmM6i+oWHS9GOX5YnfApcbRDEiWHnGfQEPCOG3sRcA/NfPwV9wChyPMadgXNl+Pc9aFEOj20qmk/LK5AgMBAAGjYDBeMA4GA1UdDwEB/wQEAwIF4DAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBRERYGCL0A1YBMCUbxwz4sAk6cfkTAfBgNVHSMEGDAWgBTFYtjJ5IqMPUdx6X0KdeZqZratzzANBgkqhkiG9w0BAQsFAAOCAgEAekd7/VB1nWpLa/2iu7xz8C0MPnkczH4qvWSgoJ7tJ+bXqT4+CL3T4jk7kRFxAj6YXDaTyrhzlwtNxmmH0fcJ0NNXF+86pAAJWbjzgpy20YOy++R4FgJM0Mai6FRDeec94BdFV90ZDxfQ7UJtV3DXtzZAVZGUMo/hsPWi0g2LzJxj2jScugjHBl5rbdc8eQdenAg4Es47dac7sF4XBLocYZeyei4LxaAgVW+R8RmU+VrJv8HcTiRaweo5/47DxYTCg69LvKThf/ow2nS+BW1bHEyD7EI++UuBk/qwoSEtjpMaXlPzN4hMk/Ht7JeifYvWloz2VgJQm8C7O4jplUcVmHkL2OgpGhXiEidA5w1xBInuohQQIK+jSFh7sxG/Ck0EVNIE9BfOc6hhM6emL0xFDoNdSXEGLs4Fm4IaazJJxREJZoB2Cb5c7MKvO6EMF08xG2JNf2P9QiQu6nWZFmyh3wUKY6/LW6YlOhPAmbQ/gu0q+0UuzgnJU61vrIedekDK8q4ePvFZDEsXKg+gA14d5eGh4dRrOqvUZtyE8r6g8vUveQsOpjt7BML6p7kSXW6OGe2K5FrnF2vhJSbHd/zb+VFhm355ssqubCpNpfnrHGoquQVbXJ3HyFEQ0i+BugEUDDE2lIofz/qlq9x+vtb13CMIy1w5WLo3pCVTsufnZmo=-----END CERTIFICATE-----",
"identityNameFormat" : null,
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/84d006fe-ab09-4b6f-b62a-088c49144b42"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/7ed09b4a-f5af-4983-ad8f-cfceac2e38f3"
}
}
}, {
"id" : "af0bb799-a285-4d83-af0d-85d85938b977",
"ownerIdentityId" : "4a12c833-dc51-48a2-8a45-855d93f8a404",
"createdBy" : "4a12c833-dc51-48a2-8a45-855d93f8a404",
"createdAt" : "2023-06-01T16:19:09.441774Z",
"updatedAt" : "2023-06-01T16:19:09.443086Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "89ba38a1-329d-4934-a089-e364ebbbd83b",
"zitiId" : "ziti-id-7703d1e1-b856-4c36-a5fc-1aa40a768a21",
"name" : "ca-330",
"endpointAttributes" : [ ],
"verificationToken" : "token",
"fingerprint" : "fingerprint",
"jwt" : "jwt",
"certPem" : "fake-pem",
"identityNameFormat" : "name-format",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/af0bb799-a285-4d83-af0d-85d85938b977"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/89ba38a1-329d-4934-a089-e364ebbbd83b"
}
}
}, {
"id" : "af25c04d-c5e8-465a-bf2d-687674d66e6c",
"ownerIdentityId" : "67ebb503-72ad-439f-bc35-fb9d850a1220",
"createdBy" : "67ebb503-72ad-439f-bc35-fb9d850a1220",
"createdAt" : "2023-06-01T16:19:09.768145Z",
"updatedAt" : "2023-06-01T16:19:09.769363Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "dce2d478-bf92-4b66-b9a0-5022f3053612",
"zitiId" : "ziti-id-3085d37a-5d45-4c7a-aed6-4c172ec3d806",
"name" : "ca-360",
"endpointAttributes" : [ ],
"verificationToken" : "token",
"fingerprint" : "fingerprint",
"jwt" : "jwt",
"certPem" : "fake-pem",
"identityNameFormat" : "name-format",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/af25c04d-c5e8-465a-bf2d-687674d66e6c"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/dce2d478-bf92-4b66-b9a0-5022f3053612"
}
}
}, {
"id" : "af8087d0-85e7-43e9-93fb-05186752228a",
"ownerIdentityId" : "548fee8f-12d1-4c66-a95f-c7d8a55e82a1",
"createdBy" : "548fee8f-12d1-4c66-a95f-c7d8a55e82a1",
"createdAt" : "2023-06-01T16:19:09.362306Z",
"updatedAt" : "2023-06-01T16:19:09.363638Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "a297a902-4548-4fbf-a7d4-116de4b62c33",
"zitiId" : "ziti-id-762aa9c1-3238-4bd7-a018-6c57254e9c56",
"name" : "ca-320",
"endpointAttributes" : [ ],
"verificationToken" : "token",
"fingerprint" : "fingerprint",
"jwt" : "jwt",
"certPem" : "fake-pem",
"identityNameFormat" : "name-format",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/af8087d0-85e7-43e9-93fb-05186752228a"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/a297a902-4548-4fbf-a7d4-116de4b62c33"
}
}
}, {
"id" : "b1d1216b-46f9-4c30-83c1-7882a492232e",
"ownerIdentityId" : "92bfb235-6cdd-4bc6-8360-28dc44f2acd5",
"createdBy" : "92bfb235-6cdd-4bc6-8360-28dc44f2acd5",
"createdAt" : "2023-06-01T16:19:09.688888Z",
"updatedAt" : "2023-06-01T16:19:09.690189Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "59899922-0837-4af5-b91e-76890415b7f4",
"zitiId" : "ziti-id-8c447cb2-b8bc-4283-a3b2-d01f19df37e5",
"name" : "ca-350",
"endpointAttributes" : [ ],
"verificationToken" : "token",
"fingerprint" : "fingerprint",
"jwt" : "jwt",
"certPem" : "fake-pem",
"identityNameFormat" : "name-format",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/b1d1216b-46f9-4c30-83c1-7882a492232e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/59899922-0837-4af5-b91e-76890415b7f4"
}
}
}, {
"id" : "dd89136d-52a0-4b5d-96be-e00cc8ecd809",
"ownerIdentityId" : "983dc9f5-cce4-4d94-ade1-ca4a38c69dae",
"createdBy" : "983dc9f5-cce4-4d94-ade1-ca4a38c69dae",
"createdAt" : "2023-06-01T16:19:09.874506Z",
"updatedAt" : "2023-06-01T16:19:09.875796Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "f711fd72-a24f-4b57-8d8e-dd65d013c7a0",
"zitiId" : "ziti-id-0298bc55-f872-4557-8da3-be6c378b87f3",
"name" : "ca-370",
"endpointAttributes" : [ ],
"verificationToken" : "token",
"fingerprint" : "fingerprint",
"jwt" : "jwt",
"certPem" : "fake-pem",
"identityNameFormat" : "name-format",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/dd89136d-52a0-4b5d-96be-e00cc8ecd809"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/f711fd72-a24f-4b57-8d8e-dd65d013c7a0"
}
}
} ]
},
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities"
}
},
"page" : {
"size" : 3500,
"totalElements" : 10,
"totalPages" : 1,
"number" : 0
}
}
Get Certificate Authority
GET /v2/certificate-authorities/{id}
Authorization
This endpoint requires read
action on the certificate-authority
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/certificate-authorities/287a9e49-c3e7-4107-b8ca-ded211ffdc1e' -i -X GET \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ5RjJsajJtWGUxMWxaRk10azBaWnJnIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6ImQ1ZGU2ZDRjLTExZmItNDRkMC04ZTg3LWJjMjM3NDAzNmQ2MSIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM1MCwiZXhwIjoxNjg1NjM5OTUwLCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjViNGVmMDFjLWM1NDUtNDJmNC1iNWZmLTVmYTU3Njc2NDkxYlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM1MH1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.F17lOV7WQHW4mkZip4-p0IOIVkDxxYn3d5IhnRZ2gfvIZnHQzBpxDW5UvBmRA8S6JF_Y1m1IEuFTRQ794Rqc1IR3tvSySlJs58-vov4X5X_HWAbK_2RcGMXu__rofcSQ9F7m03e51iispU8pDgLKOjtxkmM6R2YAyZWX3CTo4ZF31TrCBAOZiCSSvf3cKdtBVhjVTK_ryVf_lkJGcJ8NMnw3jImlXcu6eNwOiqk2waz2E1ZNoZa821tVna-biqJeKDKadxCQDS26ePRKvPzfPqmZQuVgts0DRNVwqkMULsHKfZpmRY2JcqYjKsoRV8blrlTIsGiy6fFPtE4_LtKnVA'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 1064
{
"id" : "287a9e49-c3e7-4107-b8ca-ded211ffdc1e",
"ownerIdentityId" : "ac492a1b-6270-4781-95ec-f651a632f51d",
"createdBy" : "ac492a1b-6270-4781-95ec-f651a632f51d",
"createdAt" : "2023-06-01T16:19:10.593707Z",
"updatedAt" : "2023-06-01T16:19:10.601550Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "a751bde6-1eb4-4e69-9ac5-bcf4050eead5",
"zitiId" : "ziti-id-5d66f7ae-eacb-4903-95e8-910063c8c8cf",
"name" : "ca-410",
"endpointAttributes" : [ ],
"verificationToken" : "token",
"fingerprint" : "fingerprint",
"jwt" : "jwt",
"certPem" : "fake-pem",
"identityNameFormat" : "name-format",
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/287a9e49-c3e7-4107-b8ca-ded211ffdc1e"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/a751bde6-1eb4-4e69-9ac5-bcf4050eead5"
}
}
}
Create Certificate Authority
POST /v2/certificate-authorities
Authorization
This endpoint requires create
action on the certificate-authority
resource type.
Path parameters
No parameters.
Query parameters
No parameters.
Request fields
Path | Type | Optional | Description |
---|---|---|---|
networkId |
String |
true |
|
name |
String |
true |
|
autoCaEnrollmentEnabled |
Boolean |
true |
|
authEnabled |
Boolean |
true |
|
ottCaEnrollmentEnabled |
Boolean |
true |
|
certPem |
String |
true |
|
endpointAttributes |
Array[String] |
true |
|
identityNameFormat |
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/certificate-authorities' -i -X POST \
-H 'Content-Type: application/hal+json' \
-H 'Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJ1T2NtZnhjeGZ2ai1WdVhqZktKenBRIiwiaXNzIjoiTmV0Rm91bmRyeSIsInN1YiI6IjNkZWQzMGVmLWQyN2UtNDAxOC05OTc2LTNiNWFmZWRmZDNkMyIsImF1ZCI6ImlvLm5ldGZvdW5kcnkubmV0d29yayIsImlhdCI6MTY4NTYzNjM0OSwiZXhwIjoxNjg1NjM5OTQ5LCJncmFudHMtc3VwZXIiOiJbXSIsImdyYW50cy1jdXN0b20iOiJbXSIsImdyYW50cy1wdWJsaWMiOiJbXSIsImdyYW50cy1hY3Rpb24iOiJbe1wiaWRcIjpcIjE3YTdiYzM3LWI2YjctNDBiNi1hZDM2LTY5NWQ1Mzc1MGRiYlwiLFwibGFzdE1vZGlmaWVkXCI6MTY4NTYzNjM0OX1dIiwiZ3JhbnRzLXN0YW5kYXJkIjoiW10ifQ.gGqV2-gdLLqUGYjNo_pcp88qjqvpdmD-G7LmvEr3vjJJlC1p6C_NihrU-r-gY5qM6OXLiolRVdv_svy6HVx7fdTwJUkclRBACtnB4GdByozl7dsVbo4SqjtVgISba4OY7_8EqJ7bn989_5YBA2yslaRMLu0p4qusayPtlKS1bpjSBXOMH3WFa2DjZplQlq5mByNoOy5fxjkm9x8zcKoAwD3ySI22M8mRwTgV4OygMjmLfDz1IWV87r6g6I1TM5KcCwZn68pLS2U1fxQXylzNwkEv3jySN0DqvNu64l10G3Ws0ByfFaNbP_QMN3SPYmlqV7uQ7ozvSDxeK_qOIBNKiQ' \
-d '{"networkId":"7ed09b4a-f5af-4983-ad8f-cfceac2e38f3","name":"Test ca 02","autoCaEnrollmentEnabled":true,"authEnabled":false,"ottCaEnrollmentEnabled":false,"certPem":"-----BEGIN CERTIFICATE-----\nMIIEujCCAqKgAwIBAgIRAL9YVv7hhgdfje0+onHqzogwDQYJKoZIhvcNAQELBQAw\nczELMAkGA1UEBhMCVVMxEjAQBgNVBAcTCUNoYXJsb3R0ZTETMBEGA1UEChMKTmV0\nRm91bmRyeTEQMA4GA1UECxMHQURWLURFVjEpMCcGA1UEAxMgTmV0Rm91bmRyeSwg\nSW5jLiBJbnRlcm1lZGlhdGUgQ0EwHhcNMjEwMTE1MjEwMDU3WhcNMjIwMTE1MjEw\nMTU3WjBcMQswCQYDVQQGEwJVUzESMBAGA1UEBxMJQ2hhcmxvdHRlMRMwEQYDVQQK\nEwpOZXRGb3VuZHJ5MRAwDgYDVQQLEwdBRFYtREVWMRIwEAYDVQQDEwlrWHdMajA0\nWFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJDRmC32XN31LU04Q4\nuh2uco+78sxCg8BzBbxQ7LrXRqdnfeuskoOx+b8OcA9Af4U9Co8rqrPaUR3y1bME\n5fIhZTFjesV3Z+V+dRyLlQQ6/tXybBwYeBUUwE/NSECx5jKXbLX3WgLISffxFToB\n5FVhX2okCkOPOOXiirKwUe9pCfWafnEJAevjH001nEMDh2Ir5Yny6PrU3SgRj9F1\n+aZ3kuattq89JybUofN1HHTGPOAUUzXIudhhFQC2HYGABGbxvoWBSFmM6i+oWHS9\nGOX5YnfApcbRDEiWHnGfQEPCOG3sRcA/NfPwV9wChyPMadgXNl+Pc9aFEOj20qmk\n/LK5AgMBAAGjYDBeMA4GA1UdDwEB/wQEAwIF4DAMBgNVHRMBAf8EAjAAMB0GA1Ud\nDgQWBBRERYGCL0A1YBMCUbxwz4sAk6cfkTAfBgNVHSMEGDAWgBTFYtjJ5IqMPUdx\n6X0KdeZqZratzzANBgkqhkiG9w0BAQsFAAOCAgEAekd7/VB1nWpLa/2iu7xz8C0M\nPnkczH4qvWSgoJ7tJ+bXqT4+CL3T4jk7kRFxAj6YXDaTyrhzlwtNxmmH0fcJ0NNX\nF+86pAAJWbjzgpy20YOy++R4FgJM0Mai6FRDeec94BdFV90ZDxfQ7UJtV3DXtzZA\nVZGUMo/hsPWi0g2LzJxj2jScugjHBl5rbdc8eQdenAg4Es47dac7sF4XBLocYZey\nei4LxaAgVW+R8RmU+VrJv8HcTiRaweo5/47DxYTCg69LvKThf/ow2nS+BW1bHEyD\n7EI++UuBk/qwoSEtjpMaXlPzN4hMk/Ht7JeifYvWloz2VgJQm8C7O4jplUcVmHkL\n2OgpGhXiEidA5w1xBInuohQQIK+jSFh7sxG/Ck0EVNIE9BfOc6hhM6emL0xFDoNd\nSXEGLs4Fm4IaazJJxREJZoB2Cb5c7MKvO6EMF08xG2JNf2P9QiQu6nWZFmyh3wUK\nY6/LW6YlOhPAmbQ/gu0q+0UuzgnJU61vrIedekDK8q4ePvFZDEsXKg+gA14d5eGh\n4dRrOqvUZtyE8r6g8vUveQsOpjt7BML6p7kSXW6OGe2K5FrnF2vhJSbHd/zb+VFh\nm355ssqubCpNpfnrHGoquQVbXJ3HyFEQ0i+BugEUDDE2lIofz/qlq9x+vtb13CMI\ny1w5WLo3pCVTsufnZmo=\n-----END CERTIFICATE-----","endpointAttributes":["#secureclients"]}'
Example response
HTTP/1.1 200 OK
Content-Type: application/hal+json;charset=UTF-8
Content-Length: 2933
{
"id" : "84d006fe-ab09-4b6f-b62a-088c49144b42",
"ownerIdentityId" : "3ded30ef-d27e-4018-9976-3b5afedfd3d3",
"createdBy" : "3ded30ef-d27e-4018-9976-3b5afedfd3d3",
"createdAt" : "2023-06-01T16:19:09.615932Z",
"updatedAt" : "2023-06-01T16:19:09.622338Z",
"deletedBy" : null,
"deletedAt" : null,
"networkId" : "7ed09b4a-f5af-4983-ad8f-cfceac2e38f3",
"zitiId" : "48c6c1d1-ac24-426d-93f1-be2e87d4ca5b",
"name" : "Test ca 02",
"endpointAttributes" : [ "#secureclients" ],
"verificationToken" : null,
"fingerprint" : null,
"jwt" : null,
"certPem" : "-----BEGIN CERTIFICATE-----MIIEujCCAqKgAwIBAgIRAL9YVv7hhgdfje0+onHqzogwDQYJKoZIhvcNAQELBQAwczELMAkGA1UEBhMCVVMxEjAQBgNVBAcTCUNoYXJsb3R0ZTETMBEGA1UEChMKTmV0Rm91bmRyeTEQMA4GA1UECxMHQURWLURFVjEpMCcGA1UEAxMgTmV0Rm91bmRyeSwgSW5jLiBJbnRlcm1lZGlhdGUgQ0EwHhcNMjEwMTE1MjEwMDU3WhcNMjIwMTE1MjEwMTU3WjBcMQswCQYDVQQGEwJVUzESMBAGA1UEBxMJQ2hhcmxvdHRlMRMwEQYDVQQKEwpOZXRGb3VuZHJ5MRAwDgYDVQQLEwdBRFYtREVWMRIwEAYDVQQDEwlrWHdMajA0WFQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJDRmC32XN31LU04Q4uh2uco+78sxCg8BzBbxQ7LrXRqdnfeuskoOx+b8OcA9Af4U9Co8rqrPaUR3y1bME5fIhZTFjesV3Z+V+dRyLlQQ6/tXybBwYeBUUwE/NSECx5jKXbLX3WgLISffxFToB5FVhX2okCkOPOOXiirKwUe9pCfWafnEJAevjH001nEMDh2Ir5Yny6PrU3SgRj9F1+aZ3kuattq89JybUofN1HHTGPOAUUzXIudhhFQC2HYGABGbxvoWBSFmM6i+oWHS9GOX5YnfApcbRDEiWHnGfQEPCOG3sRcA/NfPwV9wChyPMadgXNl+Pc9aFEOj20qmk/LK5AgMBAAGjYDBeMA4GA1UdDwEB/wQEAwIF4DAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBRERYGCL0A1YBMCUbxwz4sAk6cfkTAfBgNVHSMEGDAWgBTFYtjJ5IqMPUdx6X0KdeZqZratzzANBgkqhkiG9w0BAQsFAAOCAgEAekd7/VB1nWpLa/2iu7xz8C0MPnkczH4qvWSgoJ7tJ+bXqT4+CL3T4jk7kRFxAj6YXDaTyrhzlwtNxmmH0fcJ0NNXF+86pAAJWbjzgpy20YOy++R4FgJM0Mai6FRDeec94BdFV90ZDxfQ7UJtV3DXtzZAVZGUMo/hsPWi0g2LzJxj2jScugjHBl5rbdc8eQdenAg4Es47dac7sF4XBLocYZeyei4LxaAgVW+R8RmU+VrJv8HcTiRaweo5/47DxYTCg69LvKThf/ow2nS+BW1bHEyD7EI++UuBk/qwoSEtjpMaXlPzN4hMk/Ht7JeifYvWloz2VgJQm8C7O4jplUcVmHkL2OgpGhXiEidA5w1xBInuohQQIK+jSFh7sxG/Ck0EVNIE9BfOc6hhM6emL0xFDoNdSXEGLs4Fm4IaazJJxREJZoB2Cb5c7MKvO6EMF08xG2JNf2P9QiQu6nWZFmyh3wUKY6/LW6YlOhPAmbQ/gu0q+0UuzgnJU61vrIedekDK8q4ePvFZDEsXKg+gA14d5eGh4dRrOqvUZtyE8r6g8vUveQsOpjt7BML6p7kSXW6OGe2K5FrnF2vhJSbHd/zb+VFhm355ssqubCpNpfnrHGoquQVbXJ3HyFEQ0i+BugEUDDE2lIofz/qlq9x+vtb13CMIy1w5WLo3pCVTsufnZmo=-----END CERTIFICATE-----",
"identityNameFormat" : null,
"verified" : false,
"authEnabled" : false,
"autoCaEnrollmentEnabled" : false,
"ottCaEnrollmentEnabled" : false,
"_links" : {
"self" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/84d006fe-ab09-4b6f-b62a-088c49144b42"
},
"network" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/certificate-authorities/7ed09b4a-f5af-4983-ad8f-cfceac2e38f3"
},
"execution" : {
"href" : "https://gateway.production.netfoundry.io/core/v2/executions/8a1bfcdc-0e40-45a9-97d3-bd9f55b6fb06",
"title" : "Create CertificateAuthority",
"profile" : "meta"
}
}
}
Verify Certificate Authority
POST /v2/certificate-authorities/{id}/verify
Authorization
This endpoint requires update
action on the certificate-authority
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 |