You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/proxy-endpoint-unifier/README.md
+35-1Lines changed: 35 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Apigee API Proxy Endpoint Unifier
2
2
3
-
Apigee X and hybrid have a limitation of hosting up to 5 Proxy Endpoints per API Proxy. Apigee Edge has no such limitation.
3
+
Apigee X and hybrid have a limitation of hosting up to [10 Proxy Endpoints](https://cloud.google.com/apigee/docs/api-platform/reference/limits#api-proxies) per API Proxy. Apigee Edge has no such limitation.
4
4
The objective of this tool is to take a proxy bundle and intelligently convert its proxy endpoints into logically
5
5
grouped conditional flows, in order to stay within the Proxy Endpoint limit.
6
6
@@ -27,6 +27,40 @@ This is not an officially supported Google product.
27
27
gcp_project_id=xxx-xxx-xxx # Apigee Project for proxy validation
28
28
```
29
29
30
+
Folder Structure of `input_apis`
31
+
32
+
```
33
+
apis/
34
+
├── <exaple_api_1>
35
+
│ └── apiproxy
36
+
│ ├── exaple_api_1.xml
37
+
│ ├── manifests
38
+
│ │ └── manifest.xml
39
+
│ ├── policies
40
+
│ │ ├── example.xml
41
+
│ ├── proxies
42
+
│ │ ├── example.xml
43
+
│ ├── resources
44
+
│ │ └── jsc
45
+
│ │ ├── example.js
46
+
│ └── targets
47
+
│ ├── default.xml
48
+
├── <exaple_api_2>
49
+
│ └── apiproxy
50
+
│ ├── exaple_api_2.xml
51
+
│ ├── manifests
52
+
│ │ └── manifest.xml
53
+
│ ├── policies
54
+
│ │ ├── example.xml
55
+
│ ├── proxies
56
+
│ │ ├── example.xml
57
+
│ ├── resources
58
+
│ │ └── jsc
59
+
│ │ ├── example.js
60
+
│ └── targets
61
+
│ ├── default.xml
62
+
```
63
+
30
64
* If enabling validation, please run the following command to authenticate against Apigee APIs:
0 commit comments