Skip to content

Commit

Permalink
Documentation and schema updates for Release 3.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hvaneenoo committed Dec 13, 2021
1 parent d9a2537 commit 2f5a66d
Show file tree
Hide file tree
Showing 5 changed files with 61,299 additions and 38 deletions.
1 change: 1 addition & 0 deletions SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Currently supported versions:
| AS 3.31.0 | Feature | 20-Sep-2021 | 20-Dec-2021 |
| AS 3.32.0 | Feature | 01-Nov-2021 | 01-Feb-2022 |
| AS 3.32.1 | LTS | 13-Dec-2021 | 13-Dec-2022 |
| AS 3.33.0 | Feature | 13-Dec-2021 | 13-Mar-2022 |


Versions no longer supported:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"type": "string",
"$comment": "IMPORTANT: In enum array, please put current schema version first, oldest-supported version last. Keep enum array sorted most-recent-first.",
"enum": [
"3.33.0",
"3.32.0",
"3.31.0",
"3.30.0",
Expand Down Expand Up @@ -4320,6 +4321,12 @@
"metadata": {
"$ref": "#/definitions/Metadata"
},
"rateLimit": {
"description": "Specifies the maximum number of connections per second allowed for a virtual server",
"type": "integer",
"minimum": 0,
"default": 0
},
"clonePools": {
"$ref": "#/definitions/Clone_Pools"
},
Expand Down Expand Up @@ -6214,7 +6221,7 @@
]
}
],
"cloudLibsEncrypt": true
"f5LongSecret": true
}
},
"dependencies": {
Expand Down Expand Up @@ -6313,7 +6320,7 @@
]
}
],
"cloudLibsEncrypt": true
"f5LongSecret": true
},
"resourceType": {
"description": "Type of resource identified by resourceId. This can be used in place of tagKey/tagValue.",
Expand Down Expand Up @@ -6457,7 +6464,7 @@
]
}
],
"cloudLibsEncrypt": true
"f5LongSecret": true
},
"projectId": {
"title": "Project Id",
Expand Down Expand Up @@ -6519,7 +6526,7 @@
]
}
],
"cloudLibsEncrypt": true
"f5LongSecret": true
},
"trustCA": {
"title": "Trusted CA bundle",
Expand Down Expand Up @@ -8278,6 +8285,18 @@
"certificate"
],
"default": "numbered"
},
"sslEnabled": {
"title": "SSL",
"description": "Allow SSL protocol",
"type": "boolean",
"default": true
},
"ssl3Enabled": {
"title": "SSL v3",
"description": "Allow SSL v3 protocol",
"type": "boolean",
"default": true
}
},
"additionalProperties": false,
Expand Down Expand Up @@ -8668,6 +8687,18 @@
"description": "When enabled, server certificate is retained in SSL session.",
"type": "boolean",
"default": true
},
"sslEnabled": {
"title": "SSL",
"description": "Allow SSL protocol",
"type": "boolean",
"default": true
},
"ssl3Enabled": {
"title": "SSL v3",
"description": "Allow SSL v3 protocol",
"type": "boolean",
"default": true
}
},
"allOf": [
Expand Down Expand Up @@ -23290,28 +23321,44 @@
"Policy_Action_Forward_Select": {
"description": "Select appropriate location for forwarding the connection based on specified parameters",
"type": "object",
"oneOf": [
"allOf": [
{
"type": "object",
"properties": {
"pool": {
"$ref": "#/definitions/Pointer_Pool"
"oneOf": [
{
"type": "object",
"properties": {
"pool": {
"$ref": "#/definitions/Pointer_Pool"
}
},
"required": [
"pool"
]
},
{
"type": "object",
"properties": {
"service": {
"$ref": "#/definitions/Pointer_Service"
}
},
"required": [
"service"
]
}
},
"required": [
"pool"
]
},
{
"type": "object",
"properties": {
"service": {
"$ref": "#/definitions/Pointer_Service"
"snat": {
"description": "Controls snat automap",
"type": "string",
"enum": [
"disable",
"automap"
]
}
},
"required": [
"service"
]
}
}
]
},
Expand Down
Loading

0 comments on commit 2f5a66d

Please sign in to comment.