Skip to content

Commit

Permalink
Deploying to gh-pages from @ d39f9ec 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
EladTanaami committed Apr 15, 2024
1 parent 6bf3646 commit 86de405
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 61 deletions.
6 changes: 3 additions & 3 deletions index.html

Large diffs are not rendered by default.

95 changes: 37 additions & 58 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -18857,68 +18857,47 @@
"type": "object",
"properties": {
"loadBalancers": {
"title": "Load Balancers",
"description": "Add a load balancer. For Azure Gateway, each Backend Pool is a separate load balancer.",
"type": "array",
"description": "Add a load balancer. For Azure Gateway, each Backend Pool is a separate load balancer.\n",
"items": {
"anyOf": [
{
"type": "object",
"title": "MULTAI_TARGET_SET",
"properties": {
"type": {
"title": "Type",
"description": "The type of load balancer. Valid Values:\n+ MULTAI_TARGET_SET\n+ APPLICATION_GATEWAY",
"type": "string",
"example": "MULTAI_TARGET_SET",
"enum": [
"MULTAI_TARGET_SET"
]
},
"balancerId": {
"type": "string",
"example": "lb-1ee2e3q"
},
"targetSetId": {
"type": "string",
"example": "ts-3eq"
},
"autoWeight": {
"type": "boolean",
"example": true
}
}
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The type of load balancer.\n",
"enum": [
"loadBalancer",
"applicationGateway"
],
"example": "loadBalancer"
},
{
"type": "object",
"title": "APPLICATION_GATEWAY",
"properties": {
"type": {
"title": "Type",
"description": "The type of load balancer. Valid Values:\n+ MULTAI_TARGET_SET\n+ APPLICATION_GATEWAY",
"type": "string",
"example": "APPLICATION_GATEWAY",
"enum": [
"APPLICATION_GATEWAY"
]
},
"resourceGroupName": {
"title": "Resource Group Name",
"description": "The Resource Group name of the Load Balancer.",
"type": "string",
"example": "azureResourceGroup"
},
"applicationGatewayName": {
"type": "string",
"example": "appGateway"
},
"backendPoolName": {
"type": "string",
"example": "backendpool490822"
}
}
"resourceGroupName": {
"type": "string",
"description": "The Resource Group name of the Load Balancer.\n",
"example": "testResourceGroup"
},
"name": {
"type": "string",
"description": "Name of the Application Gateway/Load Balancer\n",
"example": "testLoadBalancer"
},
"sku": {
"type": "string",
"description": "* if type is LoadBalancer then possible values are:\n * “Standard\"\n * Basic”\n* if ApplicationGateway then possible values are:\n * “Standard_Large”\n * “Standard_Medium”\n * “Standard_Small”\n * “Standard_v2\n * “WAF_Large”\n * “WAF_Medium\"\n * “WAF_v2\"\n",
"example": "Standard"
},
"backendPoolNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "Name of the Backend Pool to register the Elastigroup VMs to.\\\nEach Backend Pool is a separate load balancer.\\\nRequired if Type is APPLICATION_GATEWAY.\n",
"example": [
"testBackendPool1",
"testBackendPool2"
]
}
]
}
}
}
}
Expand Down

0 comments on commit 86de405

Please sign in to comment.