Skip to content

Commit

Permalink
OAS Update
Browse files Browse the repository at this point in the history
  • Loading branch information
stackit-pipeline committed Jan 20, 2025
1 parent 16cacfd commit 8ba6422
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions services/lb-application/v1beta/lb-application.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"properties": {
"healthyThreshold": {
"description": "Healthy threshold of the health checking",
"title": "Healthy threshold"
"title": "Healthy threshold",
"type": "integer"
},
"httpHealthChecks": {
"$ref": "#/components/schemas/HttpHealthChecks"
Expand Down Expand Up @@ -33,7 +34,8 @@
},
"unhealthyThreshold": {
"description": "Unhealthy threshold of the health checking",
"title": "Unhealthy threshold"
"title": "Unhealthy threshold",
"type": "integer"
}
},
"type": "object"
Expand Down Expand Up @@ -220,7 +222,8 @@
"description": "The maximum number of load balancing servers in this project. Unlimited if set to -1.",
"maximum": 999,
"minimum": -1,
"title": "Application Load Balancer quota"
"title": "Application Load Balancer quota",
"type": "integer"
},
"projectId": {
"description": "Project identifier",
Expand Down Expand Up @@ -366,7 +369,8 @@
"port": {
"description": "Port number where we listen for traffic",
"maximum": 65535,
"minimum": 1
"minimum": 1,
"type": "integer"
},
"protocol": {
"description": "Protocol is the highest network protocol we understand to load balance. Currently PROTOCOL_HTTP and PROTOCOL_HTTPS are supported.",
Expand Down Expand Up @@ -637,7 +641,8 @@
},
"maxConnections": {
"description": "Maximum number of concurrent connections per application load balancer VM instance.",
"title": "Application Load Balancer max supported connections"
"title": "Application Load Balancer max supported connections",
"type": "integer"
},
"name": {
"description": "Service Plan Name",
Expand Down Expand Up @@ -693,7 +698,8 @@
"properties": {
"code": {
"description": "The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].",
"format": "int32"
"format": "int32",
"type": "integer"
},
"details": {
"description": "A list of messages that carry the error details. There is a common set of message types for APIs to use.",
Expand Down Expand Up @@ -740,7 +746,8 @@
"description": "The number identifying the port where each target listens for traffic.",
"example": 5732,
"maximum": 65535,
"minimum": 1
"minimum": 1,
"type": "integer"
},
"targets": {
"description": "List of all targets which will be used in the pool. Limited to 250.",
Expand Down Expand Up @@ -871,7 +878,8 @@
"description": "The number identifying the port where each target listens for traffic.",
"example": 5732,
"maximum": 65535,
"minimum": 1
"minimum": 1,
"type": "integer"
},
"targets": {
"description": "List of all targets which will be used in the pool. Limited to 250.",
Expand Down

0 comments on commit 8ba6422

Please sign in to comment.