Skip to content

Commit a8f46db

Browse files
OAS Update
1 parent e650cd6 commit a8f46db

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

services/alb/v2beta2/alb.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,19 @@
589589
},
590590
"type": "object"
591591
},
592+
"Path": {
593+
"properties": {
594+
"exact": {
595+
"description": "Exact path match. Only a request path exactly equal to the value will match, e.g. '/foo' matches only '/foo', not '/foo/bar' or '/foobar'.",
596+
"type": "string"
597+
},
598+
"prefix": {
599+
"description": "Prefix path match. Only matches on full segment boundaries, e.g. '/foo' matches '/foo' and '/foo/bar' but NOT '/foobar'.",
600+
"type": "string"
601+
}
602+
},
603+
"type": "object"
604+
},
592605
"PlanDetails": {
593606
"properties": {
594607
"description": {
@@ -670,8 +683,11 @@
670683
},
671684
"type": "array"
672685
},
686+
"path": {
687+
"$ref": "#/components/schemas/Path"
688+
},
673689
"pathPrefix": {
674-
"description": "Path prefix for the rule. If empty or '/', it matches the root path.",
690+
"description": "Legacy path prefix match. Optional. If not set, defaults to root path '/'. Cannot be set if 'path' is used. Prefer using 'path.prefix' instead.\nOnly matches on full segment boundaries, e.g. '/foo' matches '/foo' and '/foo/bar' but NOT '/foobar'.",
675691
"type": "string"
676692
},
677693
"queryParameters": {

0 commit comments

Comments
 (0)