Creates or updates a Logical Gateway on the API Platform Server. It accepts a json file with the configuration of the Logical Gateway. See below for examples.
...
| Property Name | Property Code | Required | Description |
|---|---|---|---|
| Oracle API Platform Account | FDOAP_CLOUD_ACCOUNT_CODE | Y | The Oracle API Platform cloud account to use for this operation. |
Inputs
| Input Name | Input Code | Required | Description |
|---|---|---|---|
| Gateway File | FDOAP_INP_GATEWAY_FILE | Y | Json file to use for gateway creation. Can be absolute or relative to the artifacts directory. |
| Apply Node Grant | FDOAP_INP_APPLY_NODE_GRANT | Y | Should the NodeServiceAccount grant be applied to this gateway? This grant is needed to provision nodes against this Logical Gateway. |
...
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
{
"name": "Development2Development",
"description": "ProdDevelopment Gateway",
"location": "http://example.com",
"urls": [
"http://example.com:8001",
"http://my.example.com:8001",
"https://example.com:8002"
],
"proxyUrls":[
"http://proxy.com:8001"
],
"firewall": {
"maxUnboundedItems": "1024",
"maxChildElementDepth": "1024",
"maxItemValueLength": "102400",
"maxMessageSize": "1024000"
}
} |
...