Egress proxy profiles

Update a rule in a project egress proxy profile

PUT
/v1/orgs/{org}/projects/{project}/egress-proxy-profiles/{profileId}/rules/{ruleId}
AuthorizationBearer <token>

API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.

In: header

Path Parameters

org*string
project*string
profileId*string
ruleId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

domain_pattern*string

Host the rule matches: an exact host (api.example.com) or a wildcard suffix (*.example.com). No scheme, port, or path.

Length1 <= length
path_match?string

Optional request-path prefix; the rule applies only when the path matches. Segment-bounded: /a/b matches /a/b and /a/b/c but not /a/bc.

recipe*array<>|
Items1 <= items

Response Body

application/problem+json

curl -X PUT "https://api-dev.tektona.ai/v1/orgs/string/projects/string/egress-proxy-profiles/string/rules/string" \  -H "Content-Type: application/json" \  -d '{    "domain_pattern": "string",    "recipe": [      {        "target": "header",        "template": "string"      }    ]  }'
Empty