Skip to content

Commit

Permalink
Add CrossConnection Name as an optional query parameter in List Expre…
Browse files Browse the repository at this point in the history
…ssRoute CrossConnection (#29251)

* Add CrossConnection name as an optional query parameter for List CrossConnection

* update example

* Addressing comments

* Change to OData filtering

* Fix the parameter reference

* Update

---------

Co-authored-by: Jianqi Zhao <jianzhao@microsoft.com>
  • Loading branch information
jianzhao1992 and Jianqi Zhao authored Jun 18, 2024
1 parent c3086a2 commit 3a6c7d9
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
},
"responses": {
"200": {},
"202": {},
"202": {
"headers": {
"Azure-AsyncOperation": "<azure-operation-result>"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"parameters": {
"api-version": "2024-01-01",
"subscriptionId": "subid"
"subscriptionId": "subid",
"name": "<circuitServiceKey>"
},
"responses": {
"200": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
]
}
},
"202": {}
"202": {
"headers": {
"Azure-AsyncOperation": "<azure-operation-result>"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
]
}
},
"202": {}
"202": {
"headers": {
"Azure-AsyncOperation": "<azure-operation-result>"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
]
}
},
"202": {}
"202": {
"headers": {
"Azure-AsyncOperation": "<azure-operation-result>"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@
},
{
"$ref": "./network.json#/parameters/SubscriptionIdParameter"
},
{
"name": "$filter",
"in": "query",
"required": false,
"type": "string",
"description": "The filter to apply on the operation. For example, you can use $filter=name eq '{circuitServiceKey}'.",
"x-ms-parameter-location": "method"
}
],
"responses": {
Expand Down

0 comments on commit 3a6c7d9

Please sign in to comment.