zuplo 7.4.1 → 7.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/docs/api-management/introduction.md +1 -1
  2. package/docs/articles/api-key-api.mdx +3 -3
  3. package/docs/articles/custom-ci-cd-azure.mdx +1 -1
  4. package/docs/articles/custom-ci-cd-bitbucket.mdx +2 -2
  5. package/docs/articles/custom-code-patterns.md +1 -1
  6. package/docs/articles/custom-domains.mdx +2 -2
  7. package/docs/articles/development-options.mdx +4 -4
  8. package/docs/articles/fastly-zuplo-host-setup.mdx +5 -5
  9. package/docs/articles/feature-flags.mdx +442 -0
  10. package/docs/articles/gke-with-upstream-auth-policy.mdx +7 -7
  11. package/docs/articles/health-checks.mdx +4 -4
  12. package/docs/articles/hosting-options.mdx +2 -2
  13. package/docs/articles/local-development-env-variables.mdx +1 -1
  14. package/docs/articles/metrics-plugins.mdx +1 -1
  15. package/docs/articles/migration-overview.md +1 -1
  16. package/docs/articles/monorepo-deployment.mdx +10 -10
  17. package/docs/articles/performance-testing.mdx +10 -9
  18. package/docs/articles/plugin-azure-blob.mdx +1 -1
  19. package/docs/articles/plugin-azure-event-hubs.mdx +2 -2
  20. package/docs/articles/policies.mdx +2 -2
  21. package/docs/articles/securing-backend-mtls.mdx +3 -3
  22. package/docs/articles/securing-the-gateway-with-client-mtls.mdx +3 -3
  23. package/docs/articles/securing-your-backend.mdx +1 -1
  24. package/docs/articles/security.mdx +1 -1
  25. package/docs/articles/terraform.mdx +2 -2
  26. package/docs/articles/testing.mdx +6 -6
  27. package/docs/articles/troubleshooting-slow-responses.mdx +5 -6
  28. package/docs/articles/troubleshooting.md +1 -1
  29. package/docs/articles/use-openapi-extension-data.mdx +4 -4
  30. package/docs/articles/waf-ddos-akamai.md +13 -13
  31. package/docs/articles/waf-ddos-aws-waf-shield.mdx +14 -14
  32. package/docs/articles/waf-ddos-fastly.mdx +14 -14
  33. package/docs/articles/waf-ddos.mdx +7 -7
  34. package/docs/cli/authentication.mdx +1 -1
  35. package/docs/cli/lint.mdx +103 -0
  36. package/docs/concepts/how-zuplo-works.mdx +5 -4
  37. package/docs/concepts/upstream-credentials.mdx +1 -1
  38. package/docs/dedicated/akamai/architecture.mdx +23 -24
  39. package/docs/dedicated/akamai/cdn.mdx +20 -20
  40. package/docs/dedicated/architecture.mdx +28 -27
  41. package/docs/dedicated/custom-domains.mdx +3 -4
  42. package/docs/dedicated/federated-gateways.mdx +1 -1
  43. package/docs/dedicated/networking.mdx +10 -10
  44. package/docs/dedicated/overview.mdx +3 -3
  45. package/docs/dedicated/source-control.mdx +6 -5
  46. package/docs/handlers/custom-handler.mdx +4 -4
  47. package/docs/handlers/mcp-server.mdx +1 -1
  48. package/docs/handlers/url-forward.mdx +1 -2
  49. package/docs/mcp-server/introduction.mdx +4 -4
  50. package/docs/policies/ai-gateway-dlp-inbound/doc.md +79 -45
  51. package/docs/policies/ai-gateway-dlp-inbound/schema.json +5679 -3359
  52. package/docs/programmable-api/environment.mdx +1 -1
  53. package/docs/programmable-api/jwt-service-plugin.mdx +1 -1
  54. package/docs/programmable-api/logger.mdx +1 -1
  55. package/docs/programmable-api/runtime-errors.mdx +1 -1
  56. package/docs/programmable-api/zuplo-context.mdx +3 -3
  57. package/docs/self-hosted/overview.md +3 -3
  58. package/package.json +5 -5
@@ -0,0 +1,103 @@
1
+ ---
2
+ title: "Zuplo CLI: Lint"
3
+ sidebar_label: lint
4
+ ---
5
+
6
+ <CliCommand
7
+ command="lint"
8
+ description="Lints your OpenAPI specs and policies for errors and Zuplo conventions"
9
+ options={[
10
+ {
11
+ "name": "dir",
12
+ "type": "string",
13
+ "description": "The directory containing your Zuplo API",
14
+ "default": ".",
15
+ "required": false,
16
+ "deprecated": false,
17
+ "hidden": false,
18
+ "normalize": true
19
+ },
20
+ {
21
+ "name": "config",
22
+ "type": "string",
23
+ "description": "Path to a lint config file. Defaults to zuplo.lint.jsonc or zuplo.lint.json in the project directory.",
24
+ "required": false,
25
+ "deprecated": false,
26
+ "hidden": false,
27
+ "normalize": true
28
+ },
29
+ {
30
+ "name": "format",
31
+ "type": "string",
32
+ "description": "Output format",
33
+ "default": "text",
34
+ "required": false,
35
+ "deprecated": false,
36
+ "hidden": false,
37
+ "choices": [
38
+ "text",
39
+ "json",
40
+ "sarif"
41
+ ]
42
+ },
43
+ {
44
+ "name": "fail-on",
45
+ "type": "string",
46
+ "description": "Severity threshold that fails the command. Defaults to the failOn value in your lint config, or 'error'.",
47
+ "required": false,
48
+ "deprecated": false,
49
+ "hidden": false,
50
+ "choices": [
51
+ "error",
52
+ "warn",
53
+ "none"
54
+ ]
55
+ },
56
+ {
57
+ "name": "lint-binary",
58
+ "type": "string",
59
+ "description": "Path to a zuplo-lint executable to use instead of the one installed with the CLI",
60
+ "required": false,
61
+ "deprecated": false,
62
+ "hidden": true,
63
+ "normalize": true
64
+ },
65
+ {
66
+ "name": "fix",
67
+ "type": "boolean",
68
+ "description": "Rewrite your OpenAPI files to fix what can be fixed automatically, then report what is left",
69
+ "default": false,
70
+ "required": false,
71
+ "deprecated": false,
72
+ "hidden": false
73
+ }
74
+ ]}
75
+ examples={[
76
+ [
77
+ "$0 lint",
78
+ "Lint the project in the current directory"
79
+ ],
80
+ [
81
+ "$0 lint --fix",
82
+ "Apply the fixes that can be made automatically"
83
+ ],
84
+ [
85
+ "$0 lint --fail-on warn",
86
+ "Fail the command on warnings as well as errors"
87
+ ],
88
+ [
89
+ "$0 lint --format sarif > results.sarif",
90
+ "Emit SARIF for GitHub Code Scanning"
91
+ ]
92
+ ]}
93
+ usage="$0 lint [options]"
94
+ >
95
+
96
+ </CliCommand>
97
+
98
+ ## Global options
99
+
100
+ The following global options are available for all commands:
101
+
102
+ - [`--help`](./global-options.mdx#help)
103
+ - [`--api-key`](./global-options.mdx#api-key)
@@ -2,8 +2,9 @@
2
2
  title: How Zuplo Works
3
3
  ---
4
4
 
5
- Zuplo is a programmable API gateway that runs at the edge. This page explains
6
- the architecture, runtime, and deployment model.
5
+ Zuplo is the unified gateway for APIs, AI, and MCP one programmable policy
6
+ engine that runs at the edge. This page explains the architecture, runtime, and
7
+ deployment model.
7
8
 
8
9
  ## Architecture
9
10
 
@@ -14,7 +15,7 @@ policies before reaching the client.
14
15
 
15
16
  <Diagram height="h-96">
16
17
  <DiagramNode id="clients">Clients</DiagramNode>
17
- <DiagramGroup id="zuplo" label="Zuplo API Gateway">
18
+ <DiagramGroup id="zuplo" label="Zuplo Gateway">
18
19
  <DiagramNode id="inbound" variant="zuplo">
19
20
  Inbound Policies
20
21
  </DiagramNode>
@@ -102,7 +103,7 @@ HTTP-based protocols. HTTP/2 is fully supported.
102
103
 
103
104
  ## Programmability
104
105
 
105
- While most API gateways limit you to configuration, Zuplo lets you write custom
106
+ While most gateways limit you to configuration, Zuplo lets you write custom
106
107
  logic that runs in-process at the gateway layer:
107
108
 
108
109
  - **[Custom policies](../policies/custom-code-inbound.mdx)** - intercept
@@ -20,7 +20,7 @@ the caller's identity is known and before the request leaves for the origin.
20
20
 
21
21
  <Diagram height="h-96">
22
22
  <DiagramNode id="caller">Caller</DiagramNode>
23
- <DiagramGroup id="zuplo" label="Zuplo API Gateway">
23
+ <DiagramGroup id="zuplo" label="Zuplo Gateway">
24
24
  <DiagramNode id="verify" variant="zuplo">
25
25
  Verify caller credential
26
26
  </DiagramNode>
@@ -2,8 +2,7 @@
2
2
  title: Akamai Dedicated Architecture
3
3
  sidebar_label: Architecture
4
4
  description:
5
- Architecture overview for Zuplo API Gateway deployments on Akamai Connected
6
- Cloud.
5
+ Architecture overview for Zuplo Gateway deployments on Akamai Connected Cloud.
7
6
  ---
8
7
 
9
8
  Zuplo integrates with Akamai Connected Cloud to provide a secure, highly
@@ -20,11 +19,11 @@ components:
20
19
  handles incoming client requests, providing caching, DDoS protection, and
21
20
  edge security.
22
21
  2. **Akamai Global Traffic Manager (GTM)** - Routes traffic to the appropriate
23
- Zuplo API Gateway instances based on geographic location, health status, and
24
- load balancing policies.
25
- 3. **Zuplo API Gateway** - Deployed on Akamai Connected Cloud, the gateway
26
- handles authentication, authorization, rate limiting, and request routing.
27
- Origin IP ACL ensures only Akamai edge servers can reach the gateway.
22
+ Zuplo Gateway instances based on geographic location, health status, and load
23
+ balancing policies.
24
+ 3. **Zuplo Gateway** - Deployed on Akamai Connected Cloud, the gateway handles
25
+ authentication, authorization, rate limiting, and request routing. Origin IP
26
+ ACL ensures only Akamai edge servers can reach the gateway.
28
27
  4. **Backend Services** - Your origin servers can be hosted on Akamai compute,
29
28
  customer VPCs, on-premise data centers, or public cloud providers.
30
29
 
@@ -48,7 +47,7 @@ to Zuplo and your backend services:
48
47
  </DiagramGroup>
49
48
  <DiagramGroup id="akamai-cloud" label="Akamai Connected Cloud">
50
49
  <DiagramNode id="gateway" variant="zuplo">
51
- Zuplo API Gateway
50
+ Zuplo Gateway
52
51
  </DiagramNode>
53
52
  </DiagramGroup>
54
53
  <DiagramGroup id="backends" label="Backend Services">
@@ -67,9 +66,9 @@ to Zuplo and your backend services:
67
66
  2. **CDN to GTM** - The edge server forwards the request to Akamai Global
68
67
  Traffic Manager, which determines the optimal Zuplo instance to handle the
69
68
  request.
70
- 3. **GTM to Zuplo** - GTM routes the request to a Zuplo API Gateway. Origin IP
71
- ACL ensures only traffic from Akamai's edge network reaches the gateway.
72
- 4. **Zuplo to Backend** - The Zuplo API Gateway processes the request (applying
69
+ 3. **GTM to Zuplo** - GTM routes the request to a Zuplo Gateway. Origin IP ACL
70
+ ensures only traffic from Akamai's edge network reaches the gateway.
71
+ 4. **Zuplo to Backend** - The Zuplo Gateway processes the request (applying
73
72
  policies, authentication, rate limiting) and forwards it to your backend
74
73
  services.
75
74
 
@@ -94,7 +93,7 @@ providing seamless failover.
94
93
 
95
94
  ### Secure connectivity with Origin IP ACL
96
95
 
97
- The connection between Akamai edge servers and Zuplo API Gateways uses
96
+ The connection between Akamai edge servers and Zuplo Gateways uses
98
97
  [Origin IP ACL](https://techdocs.akamai.com/origin-ip-acl/docs/welcome) to
99
98
  restrict access to the gateway. Origin IP ACL ensures that only requests from
100
99
  Akamai's edge network can reach your Zuplo origin. This provides:
@@ -112,9 +111,9 @@ connect to your gateway.
112
111
 
113
112
  ## Multi-region deployment
114
113
 
115
- Deploy your Zuplo API Gateway to multiple regions on Akamai Connected Cloud for
116
- high availability, lower latency, and disaster recovery. GTM intelligently
117
- routes traffic to the closest healthy region.
114
+ Deploy your Zuplo Gateway to multiple regions on Akamai Connected Cloud for high
115
+ availability, lower latency, and disaster recovery. GTM intelligently routes
116
+ traffic to the closest healthy region.
118
117
 
119
118
  <Diagram height="h-[500px]" direction="vertical">
120
119
  <DiagramNode id="client">Client</DiagramNode>
@@ -128,7 +127,7 @@ routes traffic to the closest healthy region.
128
127
  </DiagramGroup>
129
128
  <DiagramGroup id="region1" label="Akamai Cloud - Region 1">
130
129
  <DiagramNode id="gateway1" variant="zuplo">
131
- Zuplo API Gateway
130
+ Zuplo Gateway
132
131
  </DiagramNode>
133
132
  <DiagramNode id="backend1" variant="green">
134
133
  Backend (Region 1)
@@ -136,7 +135,7 @@ routes traffic to the closest healthy region.
136
135
  </DiagramGroup>
137
136
  <DiagramGroup id="region2" label="Akamai Cloud - Region 2">
138
137
  <DiagramNode id="gateway2" variant="zuplo">
139
- Zuplo API Gateway
138
+ Zuplo Gateway
140
139
  </DiagramNode>
141
140
  <DiagramNode id="backend2" variant="green">
142
141
  Backend (Region 2)
@@ -144,7 +143,7 @@ routes traffic to the closest healthy region.
144
143
  </DiagramGroup>
145
144
  <DiagramGroup id="region3" label="Akamai Cloud - Region 3">
146
145
  <DiagramNode id="gateway3" variant="zuplo">
147
- Zuplo API Gateway
146
+ Zuplo Gateway
148
147
  </DiagramNode>
149
148
  <DiagramNode id="backend3" variant="green">
150
149
  Backend (Region 3)
@@ -181,15 +180,15 @@ Configure GTM properties with appropriate settings:
181
180
 
182
181
  ## Backend connectivity
183
182
 
184
- Zuplo API Gateway supports multiple methods for securing connections to your
185
- backend services. Most authentication methods work regardless of where your
186
- backend is hosted, giving you flexibility to choose the approach that best fits
187
- your security requirements.
183
+ Zuplo Gateway supports multiple methods for securing connections to your backend
184
+ services. Most authentication methods work regardless of where your backend is
185
+ hosted, giving you flexibility to choose the approach that best fits your
186
+ security requirements.
188
187
 
189
188
  <Diagram height="h-[300px]" direction="vertical">
190
189
  <DiagramGroup id="akamai-cloud" label="Akamai Connected Cloud">
191
190
  <DiagramNode id="gateway" variant="zuplo">
192
- Zuplo API Gateway
191
+ Zuplo Gateway
193
192
  </DiagramNode>
194
193
  </DiagramGroup>
195
194
  <DiagramGroup id="akamai-compute" label="Akamai Compute">
@@ -265,7 +264,7 @@ Consider these factors when selecting an authentication method:
265
264
  For detailed instructions on configuring Akamai CDN properties for your Zuplo
266
265
  deployment, see [Setting up Akamai CDNs](./cdn.mdx). This guide covers:
267
266
 
268
- - Property hostname configuration for API gateway and developer portal
267
+ - Property hostname configuration for Zuplo Gateway and developer portal
269
268
  - Origin server settings with host header forwarding
270
269
  - Origin IP ACL configuration for secure edge-to-origin connectivity
271
270
  - Caching behaviors for API responses
@@ -9,7 +9,7 @@ When running managed dedicated on the Akamai Cloud, you need to set up 2 CDNs,
9
9
  one for your API endpoint deployments, and one for your developer portal.
10
10
 
11
11
  This document outlines the configurations you need to add to your Akamai CDNs to
12
- set them up to access your API gateway and developer portal.
12
+ set them up to access your Zuplo Gateway and developer portal.
13
13
 
14
14
  All configurations in this guide were done on the Akamai Property Manager, see
15
15
  the
@@ -18,14 +18,14 @@ for more details.
18
18
 
19
19
  ### Domains
20
20
 
21
- Before you configure the CDN for your API Gateway and Developer Portal, you will
22
- to decide how you would like your domains to be set up. Generally, you will
21
+ Before you configure the CDN for your Zuplo Gateway and Developer Portal, you
22
+ will to decide how you would like your domains to be set up. Generally, you will
23
23
  provision two types of domains - a static domain for production and wildcard
24
24
  domains for preview environments.
25
25
 
26
26
  For preview environments, you will use wildcard domains so that each environment
27
27
  (normally each git branch) will have its own subdomain. For example, you might
28
- use `*.api.example.com` for the API gateway and `*.dev.example.com` for the
28
+ use `*.api.example.com` for the Zuplo Gateway and `*.dev.example.com` for the
29
29
  developer portal. This will allow you to have URLs for each environment like
30
30
  `https://my-environment-123.api.example.com` and
31
31
  `https://my-environment-123.dev.example.com`.
@@ -42,20 +42,20 @@ certificates will be different.
42
42
 
43
43
  1. Provision the domains that you would like these CDNs to have and certificates
44
44
  for those domains, according to the domain section.
45
- 2. Request the Origin URLs for your API gateway and developer portal from your
45
+ 2. Request the Origin URLs for your Zuplo Gateway and developer portal from your
46
46
  Zuplo account manager.
47
47
  3. Let your Zuplo account manager know what hostnames/domains you will be using
48
48
  in your CDNs.
49
49
 
50
- ## API Gateway CDN
50
+ ## Zuplo Gateway CDN
51
51
 
52
- This section guides you on how to configure your API Gateway CDN.
52
+ This section guides you on how to configure your Zuplo Gateway CDN.
53
53
 
54
- Add the API gateway domain you provisioned to the Property Hostname for the API
55
- Gateway CDN. See the Akamai docs on
54
+ Add the Zuplo Gateway domain you provisioned to the Property Hostname for the
55
+ Zuplo Gateway CDN. See the Akamai docs on
56
56
  [configuring HTTPS host names](https://techdocs.akamai.com/property-mgr/docs/serve-content-over-https).
57
57
 
58
- An example of how you might configure your API Gateway CDN domains for your
58
+ An example of how you might configure your Zuplo Gateway CDN domains for your
59
59
  preview environment and your production environment is below. Note that for your
60
60
  development environment CDN, you would need the wildcard domain since many
61
61
  development environments are named things like
@@ -95,10 +95,10 @@ After configuring the CDN domains, make the following behavior changes:
95
95
  ![Set variable behavior](../../../public/media/managed-dedicated-akamai/regex-behaviour.png)
96
96
 
97
97
  2. Configure the Origin URL to point to the URL given to you by Zuplo for your
98
- API gateway. Ensure that the Forward Host Header is configured to be a Custom
99
- Value, and the value should be the variable you created in the previous step.
100
- This would look something similar to below:
101
- ![API gateway origin URL](../../../public/media/managed-dedicated-akamai/api_gateway_origin_url.png)
98
+ Zuplo Gateway. Ensure that the Forward Host Header is configured to be a
99
+ Custom Value, and the value should be the variable you created in the
100
+ previous step. This would look something similar to below:
101
+ ![Zuplo Gateway origin URL](../../../public/media/managed-dedicated-akamai/api_gateway_origin_url.png)
102
102
 
103
103
  3. Turn on Content Targeting (Edgescape) in the Geolocation rule in the Property
104
104
  Manager Sidebar.
@@ -111,10 +111,10 @@ After configuring the CDN domains, make the following behavior changes:
111
111
  This section guides you on how to set up the Developer Portal CDN.
112
112
 
113
113
  Add the Developer Portal gateway domain you provisioned to the Property Hostname
114
- for the API Gateway CDN. See the Akamai docs on
114
+ for the Zuplo Gateway CDN. See the Akamai docs on
115
115
  [configuring HTTPS host names](https://techdocs.akamai.com/property-mgr/docs/serve-content-over-https).
116
- This is done similarly to your API gateway CDN hostname configuration, but with
117
- the domains you provisioned for your Developer Portal.
116
+ This is done similarly to your Zuplo Gateway CDN hostname configuration, but
117
+ with the domains you provisioned for your Developer Portal.
118
118
 
119
119
  An example of how you might configure your Developer Portal CDN domains for your
120
120
  preview environment and your production environment is below.
@@ -128,7 +128,7 @@ Under the Default Rule page, add the following behaviors:
128
128
 
129
129
  1. Configure the origin URL to be the URL given to be the one given to you by
130
130
  Zuplo for your Developer Portal. This will look similarly to how you
131
- configured it for your API Gateway CDN. Take note that the Forward Host
131
+ configured it for your Zuplo Gateway CDN. Take note that the Forward Host
132
132
  header should also be set as the Origin Hostname.
133
133
 
134
134
  2. Modify Incoming Request Header behavior, with the following fields:
@@ -149,8 +149,8 @@ Under the Default Rule page, add the following behaviors:
149
149
 
150
150
  ![Dev portal caching behavior](../../../public/media/managed-dedicated-akamai/dev_portal_cdn_caching_behavior.png)
151
151
 
152
- Congratulations, you've set up your Akamai CDN to serve your API Gateway and
152
+ Congratulations, you've set up your Akamai CDN to serve your Zuplo Gateway and
153
153
  Developer Portal! At this point, you should be able to test that these things
154
- are working by either hitting an endpoint in your API gateway (e.g.,
154
+ are working by either hitting an endpoint in your Zuplo Gateway (e.g.,
155
155
  mygateway.com/my/endpoint), or navigating to a page in your developer portal
156
156
  (e.g., myportal.com/home).
@@ -4,27 +4,27 @@ sidebar_label: Architecture
4
4
  ---
5
5
 
6
6
  Zuplo's managed dedicated instances are highly available, scalable, and secure.
7
- With a managed dedicated instance of Zuplo, your API Gateway runs on isolated
7
+ With a managed dedicated instance of Zuplo, your Zuplo Gateway runs on isolated
8
8
  instances and, when running on a cloud provider that supports it, a dedicated
9
9
  network environment. This document outlines the components and architecture of a
10
- managed dedicated instance of a Zuplo API Gateway.
10
+ managed dedicated instance of a Zuplo Gateway.
11
11
 
12
12
  ## Components
13
13
 
14
14
  A managed dedicated instance of Zuplo consists of the following components:
15
15
 
16
- - **API Gateway**: The API Gateway is the core component of Zuplo. It receives
17
- incoming requests, routes them to the appropriate backend, and returns the
18
- response to the client. The API Gateway handles authentication, authorization,
19
- rate limiting, and other features.
20
- - **Gateway Services**: Zuplo, being a highly distributed API Gateway, uses
21
- services to facilitate features such as
16
+ - **Zuplo Gateway**: The Zuplo Gateway is the core component of Zuplo. It
17
+ receives incoming requests, routes them to the appropriate backend, and
18
+ returns the response to the client. The gateway handles authentication,
19
+ authorization, rate limiting, and other features.
20
+ - **Gateway Services**: Zuplo, being a highly distributed gateway, uses services
21
+ to facilitate features such as
22
22
  [Rate Limiting](../articles/step-2-add-rate-limiting.mdx) and
23
23
  [API Key Authentication](../articles/api-key-management.mdx).
24
- - **Control Plane**: The Control Plane manages the configuration of the API
25
- Gateway. It deploys new configurations, manages the lifecycle of the API
24
+ - **Control Plane**: The Control Plane manages the configuration of the Zuplo
25
+ Gateway. It deploys new configurations, manages the lifecycle of the Zuplo
26
26
  Gateway, and monitors its health.
27
- - **Analytics and Logging**: Zuplo provides analytics and logging for your API
27
+ - **Analytics and Logging**: Zuplo provides analytics and logging for your Zuplo
28
28
  Gateway. This includes request/response logging, error logging, and analytics
29
29
  on request volume, latency, and other metrics.
30
30
  - **Developer Portal**: The Developer Portal is a web-based interface that
@@ -51,7 +51,7 @@ requirements. Examples include:
51
51
  can disable the built-in analytics. When disabled, Zuplo stops collecting or
52
52
  storing analytics data for the APIs.
53
53
  - **Custom Logging & Monitoring** - Zuplo can integrate with your existing
54
- logging and monitoring systems. Logs and other data go directly from the API
54
+ logging and monitoring systems. Logs and other data go directly from the Zuplo
55
55
  Gateway to your logging provider. Zuplo doesn't collect or store this data.
56
56
 
57
57
  ## Security
@@ -62,11 +62,12 @@ for you to customize the networking and connectivity to meet your specific
62
62
  security requirements.
63
63
 
64
64
  - **IAM Authorization**: Managed dedicated instances of Zuplo can use the IAM
65
- capabilities to control traffic between the API Gateway and other services.
65
+ capabilities to control traffic between the Zuplo Gateway and other services.
66
66
  - **Encryption**: Zuplo encrypts data both in transit and at rest. TLS secures
67
- all data sent to or from the API Gateway. Zuplo encrypts stored data at rest.
67
+ all data sent to or from the Zuplo Gateway. Zuplo encrypts stored data at
68
+ rest.
68
69
  - **Access Control**: Zuplo provides robust authentication and access control
69
- mechanisms. You control who has access to your API Gateway management
70
+ mechanisms. You control who has access to your Zuplo Gateway management
70
71
  capabilities, what they can do, and what data they can access.
71
72
  - **Audit Logs**: Zuplo provides detailed audit logs of all management
72
73
  operations. You can see who did what, when they did it, and what data they
@@ -86,7 +87,7 @@ instance of Zuplo and how the components interact with each other.
86
87
  <DiagramNode id="client">Client</DiagramNode>
87
88
  <DiagramGroup id="dedicated-vpc" label="Dedicated Network">
88
89
  <DiagramNode id="gateway" variant="zuplo">
89
- Zuplo API Gateway
90
+ Zuplo Gateway
90
91
  </DiagramNode>
91
92
  <DiagramNode id="services" variant="zuplo">
92
93
  Gateway Services
@@ -108,7 +109,7 @@ instance of Zuplo and how the components interact with each other.
108
109
 
109
110
  When you deploy to your managed dedicated instance of Zuplo, you upload your
110
111
  source code and configuration files to the Control Plane. The Control Plane then
111
- deploys your API Gateway to the appropriate infrastructure. The API Gateway
112
+ deploys your Zuplo Gateway to the appropriate infrastructure. The Zuplo Gateway
112
113
  deploys to multiple nodes in multiple regions to provide high availability and
113
114
  low latency. If you run in multiple regions, the Control Plane manages the
114
115
  deployment to each region without any downtime.
@@ -124,7 +125,7 @@ customized to meet your specific requirements.
124
125
  Control Plane
125
126
  </DiagramNode>
126
127
  <DiagramNode id="gateway" variant="zuplo">
127
- Zuplo API Gateway
128
+ Zuplo Gateway
128
129
  </DiagramNode>
129
130
  <DiagramNode id="portal" variant="zuplo">
130
131
  Dev Portal
@@ -136,12 +137,12 @@ customized to meet your specific requirements.
136
137
 
137
138
  ### Multiple regions
138
139
 
139
- It's common practice to deploy your API Gateway to multiple regions to provide
140
+ It's common practice to deploy your Zuplo Gateway to multiple regions to provide
140
141
  higher availability, lower latency, and meet regulatory requirements. Zuplo can
141
- deploy your API Gateway to multiple regions and manage the deployment to each
142
+ deploy your Zuplo Gateway to multiple regions and manage the deployment to each
142
143
  region without any downtime.
143
144
 
144
- When you deploy your API Gateway to multiple regions, Zuplo uses a global load
145
+ When you deploy your Zuplo Gateway to multiple regions, Zuplo uses a global load
145
146
  balancer to route traffic to the closest region. This provides low latency
146
147
  access to your APIs for end-users around the world. The load balancer also
147
148
  handles failover in case of an outage in one region.
@@ -150,13 +151,13 @@ handles failover in case of an outage in one region.
150
151
  <DiagramNode id="client">Client</DiagramNode>
151
152
  <DiagramNode id="lb">Load Balancer</DiagramNode>
152
153
  <DiagramNode id="region1" variant="zuplo">
153
- API Gateway (Region 1)
154
+ Zuplo Gateway (Region 1)
154
155
  </DiagramNode>
155
156
  <DiagramNode id="region2" variant="zuplo">
156
- API Gateway (Region 2)
157
+ Zuplo Gateway (Region 2)
157
158
  </DiagramNode>
158
159
  <DiagramNode id="region3" variant="zuplo">
159
- API Gateway (Region 3)
160
+ Zuplo Gateway (Region 3)
160
161
  </DiagramNode>
161
162
  <DiagramEdge from="client" to="lb" />
162
163
  <DiagramEdge from="lb" to="region1" />
@@ -169,7 +170,7 @@ handles failover in case of an outage in one region.
169
170
  Customers running managed dedicated Zuplo typically have multiple instances of
170
171
  Zuplo deployed. The most common case is to have a production instance and a
171
172
  non-production instance. The non-production instance is used to deploy and test
172
- changes to your API Gateway before deploying them to production. Each instance
173
+ changes to your Zuplo Gateway before deploying them to production. Each instance
173
174
  can run many different deployments. A typical setup, the production instance
174
175
  hosts only the production deployment, while the non-production instance hosts
175
176
  many other deployments (for example staging, development, QA, or any feature
@@ -197,10 +198,10 @@ customizable.
197
198
  Control Plane
198
199
  </DiagramNode>
199
200
  <DiagramNode id="prod" variant="zuplo">
200
- API Gateway (Production)
201
+ Zuplo Gateway (Production)
201
202
  </DiagramNode>
202
203
  <DiagramNode id="non-prod" variant="zuplo">
203
- API Gateway (Non-Production)
204
+ Zuplo Gateway (Non-Production)
204
205
  </DiagramNode>
205
206
  <DiagramEdge from="source" to="control" label="Deploy" />
206
207
  <DiagramEdge from="control" to="prod" />
@@ -6,10 +6,9 @@ sidebar_label: Custom Domains
6
6
  Configuration of custom domains with your managed dedicated instance of Zuplo
7
7
  varies depending on how your
8
8
  [instance networking is configured](./networking.mdx). For customers using their
9
- Zuplo API Gateway as the ingress the bulk of the configuration is managed by
10
- Zuplo. You will be provided an IP address or CNAME to point your DNS to.
11
- Normally, Zuplo manages the SSL certificates in this type of configuration as
12
- well.
9
+ Zuplo Gateway as the ingress the bulk of the configuration is managed by Zuplo.
10
+ You will be provided an IP address or CNAME to point your DNS to. Normally,
11
+ Zuplo manages the SSL certificates in this type of configuration as well.
13
12
 
14
13
  Custom configurations are supported with Zuplo Managed Dedicated instances. For
15
14
  example, you can use your own SSL certificates, or if you are using your own VPC
@@ -7,7 +7,7 @@ sidebar_label: Federated Gateways
7
7
 
8
8
  With a managed dedicated Zuplo instance you can create a federated gateway that
9
9
  allows you to connect multiple Zuplo projects together. This is useful for
10
- creating a single API Gateway that can route requests to multiple backend
10
+ creating a single Zuplo Gateway that can route requests to multiple backend
11
11
  services, each running on its own Zuplo instance.
12
12
 
13
13
  ## Reasons to Use Federated Gateways
@@ -12,9 +12,9 @@ Common configurations include:
12
12
  - Using Zuplo as the public ingress to your API and using network connectivity
13
13
  such as PrivateLink, Private Service Connect, VNet or VPC peering, or
14
14
  provider-native network hubs to connect to your backend services.
15
- - Restricting access to the public internet by configuring your API Gateway to
15
+ - Restricting access to the public internet by configuring your Zuplo Gateway to
16
16
  only accept traffic from specific IP ranges or private networks, allowing you
17
- to put WAFs, IDS/IPS, or other security appliances in front of your API
17
+ to put WAFs, IDS/IPS, or other security appliances in front of your Zuplo
18
18
  Gateway.
19
19
  - Multiple dedicated managed instances of Zuplo can be deployed across multiple
20
20
  regions to provide high availability and disaster recovery.
@@ -32,19 +32,19 @@ To discuss your networking requirements, please contact your account manager.
32
32
 
33
33
  ## Zuplo Ingress to Customer Private Network
34
34
 
35
- The default setup for dedicated managed Zuplo is to use your Zuplo API Gateway
36
- as the public ingress to your API. This is the simplest setup and allows Zuplo
37
- to manage things like SSL certificates on your behalf.
35
+ The default setup for dedicated managed Zuplo is to use your Zuplo Gateway as
36
+ the public ingress to your API. This is the simplest setup and allows Zuplo to
37
+ manage things like SSL certificates on your behalf.
38
38
 
39
39
  In this setup your private network isn't exposed to the public internet at all.
40
- Instead, your Zuplo API Gateway uses a private network connection to reach your
40
+ Instead, your Zuplo Gateway uses a private network connection to reach your
41
41
  backend services.
42
42
 
43
43
  <Diagram height="h-48">
44
44
  <DiagramNode id="client">Client</DiagramNode>
45
45
  <DiagramGroup id="dedicated-vpc" label="Dedicated Network">
46
46
  <DiagramNode id="gateway" variant="zuplo">
47
- Zuplo API Gateway
47
+ Zuplo Gateway
48
48
  </DiagramNode>
49
49
  </DiagramGroup>
50
50
  <DiagramGroup id="customer-vpc" label="Customer Private Network">
@@ -54,11 +54,11 @@ backend services.
54
54
  <DiagramEdge from="gateway" to="backend" />
55
55
  </Diagram>
56
56
 
57
- ## Customer Private Network Ingress to Zuplo API Gateway
57
+ ## Customer Private Network Ingress to Zuplo Gateway
58
58
 
59
59
  If you have custom networking requirements, such as using a static IP address
60
60
  you already own, or if you want to run services such as WAFs, IDS/IPS, or other
61
- security products in front of your API Gateway, Zuplo can be configured to
61
+ security products in front of your Zuplo Gateway, Zuplo can be configured to
62
62
  accept traffic from your private network and then route it to your backend. Your
63
63
  backend could be in the same network as your ingress or in another private
64
64
  network.
@@ -71,7 +71,7 @@ network.
71
71
  </DiagramGroup>
72
72
  <DiagramGroup id="dedicated-vpc" label="Dedicated Network">
73
73
  <DiagramNode id="gateway" variant="zuplo">
74
- Zuplo API Gateway
74
+ Zuplo Gateway
75
75
  </DiagramNode>
76
76
  </DiagramGroup>
77
77
  <DiagramEdge from="client" to="waf" />
@@ -10,7 +10,7 @@ configurations or have strict security or compliance requirements.
10
10
 
11
11
  Managed Dedicated hosting might be the right choice for you if you need:
12
12
 
13
- - To run your API Gateway on the cloud provider of your choice
13
+ - To run your Zuplo Gateway on the cloud provider of your choice
14
14
  - To customize networking configurations, such as restricting access to the
15
15
  public internet
16
16
  - Have geographical deployment requirements where the
@@ -47,7 +47,7 @@ features as you would with edge-based deployments.
47
47
 
48
48
  In addition to the standard features, managed dedicated hosting provides:
49
49
 
50
- - **Custom Networking Configurations** - Configure your API Gateway to only be
50
+ - **Custom Networking Configurations** - Configure your Zuplo Gateway to only be
51
51
  accessible from specific private networks or IP ranges
52
52
  - **Private Networking Options** - Support for provider-native private
53
53
  connectivity patterns such as AWS PrivateLink, Azure Private Link, and GCP
@@ -55,7 +55,7 @@ In addition to the standard features, managed dedicated hosting provides:
55
55
  - **Isolated Network Deployment** - Your gateway runs in a dedicated, isolated
56
56
  network environment for maximum security and isolation
57
57
  - **Custom Ingress Options** - Use your own static IP addresses or security
58
- appliances (WAFs, IDS/IPS) in front of your API Gateway
58
+ appliances (WAFs, IDS/IPS) in front of your Zuplo Gateway
59
59
 
60
60
  ### High Availability
61
61