Skip to content

Commit 1995bd7

Browse files
OAS Update
1 parent 1d50f71 commit 1995bd7

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

services/iaas/v1beta1/iaas.json

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2626,6 +2626,15 @@
26262626
},
26272627
"type": "object"
26282628
},
2629+
"UpdateNetworkAreaRoutePayload": {
2630+
"description": "Object that represents the request body for a route update.",
2631+
"properties": {
2632+
"labels": {
2633+
"$ref": "#/components/schemas/Labels"
2634+
}
2635+
},
2636+
"type": "object"
2637+
},
26292638
"UpdateNetworkIPv4Body": {
26302639
"description": "The config object for a IPv4 network update.",
26312640
"properties": {
@@ -2917,6 +2926,9 @@
29172926
"parameters": [
29182927
{
29192928
"$ref": "#/components/parameters/v1OrganizationID"
2929+
},
2930+
{
2931+
"$ref": "#/components/parameters/v1LabelSelector"
29202932
}
29212933
],
29222934
"responses": {
@@ -3409,6 +3421,9 @@
34093421
},
34103422
{
34113423
"$ref": "#/components/parameters/v1NetworkAreaID"
3424+
},
3425+
{
3426+
"$ref": "#/components/parameters/v1LabelSelector"
34123427
}
34133428
],
34143429
"responses": {
@@ -3582,6 +3597,60 @@
35823597
}
35833598
},
35843599
"summary": "Get details about a network route."
3600+
},
3601+
"patch": {
3602+
"description": "Update a network route defined in a network area.",
3603+
"operationId": "UpdateNetworkAreaRoute",
3604+
"parameters": [
3605+
{
3606+
"$ref": "#/components/parameters/v1OrganizationID"
3607+
},
3608+
{
3609+
"$ref": "#/components/parameters/v1NetworkAreaID"
3610+
},
3611+
{
3612+
"$ref": "#/components/parameters/v1RouteID"
3613+
}
3614+
],
3615+
"requestBody": {
3616+
"content": {
3617+
"application/json": {
3618+
"schema": {
3619+
"$ref": "#/components/schemas/UpdateNetworkAreaRoutePayload"
3620+
}
3621+
}
3622+
},
3623+
"description": "Request an update of a network route.",
3624+
"required": true
3625+
},
3626+
"responses": {
3627+
"200": {
3628+
"content": {
3629+
"application/json": {
3630+
"schema": {
3631+
"$ref": "#/components/schemas/Route"
3632+
}
3633+
}
3634+
},
3635+
"description": "Update request for network successful."
3636+
},
3637+
"400": {
3638+
"$ref": "#/components/responses/BadRequest"
3639+
},
3640+
"401": {
3641+
"$ref": "#/components/responses/Unauthorized"
3642+
},
3643+
"403": {
3644+
"$ref": "#/components/responses/Forbidden"
3645+
},
3646+
"404": {
3647+
"$ref": "#/components/responses/NotFound"
3648+
},
3649+
"500": {
3650+
"$ref": "#/components/responses/InternalServerError"
3651+
}
3652+
},
3653+
"summary": "Update a network route."
35853654
}
35863655
},
35873656
"/v1beta1/organizations/{organizationId}/requests/{requestId}": {

0 commit comments

Comments
 (0)