Commit db124c9
Release of microsoft.network api version: 2022 11 01 (#23652)
* Adds base for updating Microsoft.Network from version stable/2022-09-01 to version 2022-11-01
* Updates readme
* Updates API version in new specs and examples
* remove loadDistributionPolicy from appgw PUT request body example (#23144)
* remove loadDistributionPolicy from appgw PUT request body example
* remove loadDistributionPolicy from appgw PUT request body example2
* remove loadDistributionPolicy from appgw PUT request body example
* remove duplicates
* add private link configuration to see if it will fix validation error
* remove privateLinkConfig related
* revert changes to see if still get validation error
* update back to original changes
* add response resource id to fix modelValidation error
* add connection resource
* Selector in Exclusions should not be required as Operator EqualsAny does not need a Selector (#23184)
* Application Gateway WAF Rate Limit feature swagger changes (#23021)
* Application Gateway WAF Rate Limit feature swagger changes
* Fixing lint errors
* Updated rate limit feature examples
* Fix for applicationGatewayIpConfigurations property and make the priority parameter as required for NSG (#23210)
* Fix for applicationGatewayIpConfigurations property
This swagger definition is defining property applicationGatewayIpConfigurations,
```
"applicationGatewayIpConfigurations": {
"type": "array",
"items": {
"$ref": "./applicationGateway.json#/definitions/ApplicationGatewayIPConfiguration"
},
"description": "Application gateway IP configurations of virtual network resource."
}
```
but actual rest api returned applicationGatewayIPConfigurations, the P is upper case while in swagger it is lower case.
```
{
"name": "subnet-agw",
"id": "/subscriptions/<sub-id>/resourceGroups/<rg-name>/providers/Microsoft.Network/virtualNetworks/<vnet-name>/subnets/subnet-agw",
"properties": {
"applicationGatewayIPConfigurations": [
{
"id": "/subscriptions/<sub-id>/resourceGroups/<rg-name>/providers/Microsoft.Network/applicationGateways/<agw-name>/gatewayIPConfigurations/appGatewayIpConfig"
}
]
},
"type": "Microsoft.Network/virtualNetworks/subnets"
}
```
* Making priority property required
[This is the API invoked](https://learn.microsoft.com/en-us/rest/api/virtualnetwork/network-security-groups/create-or-update?tabs=HTTP#code-try-0).
For the NSG security rules without priorities, seems like the priority parameter is required. Azure portal works as expected. I don't think that's allowed but according to the schema it is because the priority property is not marked as required. I tried to create a NSG security rule without the priorities and it failed with below.
Request Body:
```
{
"properties": {
"securityRules": [
{
"name": "rule1",
"properties": {
"protocol": "*",
"sourceAddressPrefix": "*",
"destinationAddressPrefix": "*",
"access": "Allow",
"destinationPortRange": "80",
"sourcePortRange": "*",
"direction": "Inbound"
}
}
]
},
"location": "eastus"
}
```
Response received:
```
{
"error": {
"code": "SecurityRuleInvalidPriority",
"message": "Security rule has invalid Priority. Value provided: 0 Allowed range 100-4096.",
"details": []
}
}
```
This PR will make the priority parameter as required.
* Update NetworkSecurityGroupDelete.json
* Update NetworkSecurityGroupRuleDelete.json
* Update NetworkSecurityGroupDelete.json
* Undo previous change of making fields optional within Exclusion (#23325)
* Nivishenker/http headers to insert (#23295)
* new app rule property - http header to insert
* prettier
* add to 22-11-01
* removed changes from 22-09-01
* fixed example
* delete RCG example
* fix delete examples
* added a Location header
* prettier fix
* Application Gateway WAF Log scrubbing swagger changes (#23022)
* Log scrubbing API changes
* Update examples
* Addressing comments
* Fix
* Update property in load balancer for Connection Draining Phase 1 (#23082)
* Update property in load balancer for Coneection Draining Phase 1
* Fix model validation
* Azure Firewall Packet Capture API. Cancelled PR from 2022-09-01 and created for 2022-11-01 (#23114)
* moving packet-capture api to 2022-11-01 release from 2022-09-01
* fixing the LRO response header error for model validation
* Changes for Additional nic and corrections (#23522)
* Changes for Additional nic and corrections
* Fixes for tool reported issues
* Fix for SpellCheck, ModelValidation
* Defining Location in NetworkVirtualApplianceDelete for async
* Minor fix
* Minor fix
* Minor fix
* PrettierCheck fixed
* Fixing VirtualApplianceAdditionalNicProperties
* ModelValidation fixed
* Correcting the location header string
* Correcting location header
* Prettied Check Fix
* Fix
* Fix
* Add inspection limit changes (#23536)
* Fixed headers for examples (#23554)
* Fix response of API: List of advertised/learned BGP routes (#23555)
* fix response type
* fix format
* fix example, add x-ms-identifiers
* AuxiliarySku on Nic (#23552)
* Adding auxiliary sku property on nic
* Adding AcceleratedConnections to AuxMode
* modifying the auxSku values
* Removing accidental change
---------
Co-authored-by: Prachi Pravin Bhavsar <prbhavsar@microsoft.com>
* migrated latest pr from incorrect branch (#23589)
* Changes for NVA connection (#23173)
* Changes for NVA connection
* Changes to address validation failures
* Fix some ModelValidation errors
* Fix some ModelValidation errors
* Fix some ModelValidation errors
* Fix some ModelValidation errors
* Fix some ModelValidation errors
* Addressing some review comments
* Addressing some review comments
* Addressing some review comments
* Addressing some review comments
* Addressing some review comments
* Fix camel case for property name
* Fixing resourceUri to Camel case in example files
* Fix SDK duplication error
* Fix one LintDiff error
* try fix lintdiff errors
* fix lro erro in lintdiff
* fix model validation error
* Bastion S360 for 2022-11 version (#23595)
* Release microsoft.network 2022 11 01 (#23564)
* Application Gateway WAF Rate Limit feature swagger changes
* Fixing lint errors
* Updated rate limit feature examples
* rateLimitDuration and rateLimitThreshold are not mandatory. There are only mandatory if ruleType is RateLimitRule. This validation will be done in NRP.
* Fix attempt 2. Removed minimum constraint from rateLimitThreshold. Validation will be done in NRP
* Remove the minimum number for the option field requestBodyInspectLimitInKB (#23663)
* Remove minimum value for optional field requestBodyInspectLimitInKB
* Remove exlcusiveMinimum
---------
Co-authored-by: htippanaboya <102244326+htippanaboya@users.noreply.github.com>
Co-authored-by: tracyMicro <127259533+tracyMicro@users.noreply.github.com>
Co-authored-by: tejasshah7 <49326906+tejasshah7@users.noreply.github.com>
Co-authored-by: sraghavan-msft <98118843+sraghavan-msft@users.noreply.github.com>
Co-authored-by: navba-MSFT <57353862+navba-MSFT@users.noreply.github.com>
Co-authored-by: NiviShenker <99583088+NiviShenker@users.noreply.github.com>
Co-authored-by: Sindhu Aluguvelli <sindhureddy216@gmail.com>
Co-authored-by: phrazfipho <121897152+phrazfipho@users.noreply.github.com>
Co-authored-by: nikhilpadhye1 <68977752+nikhilpadhye1@users.noreply.github.com>
Co-authored-by: JainRah <108508612+JainRah@users.noreply.github.com>
Co-authored-by: karanbazaz <karan.bazaz@gmail.com>
Co-authored-by: yeliMSFT <95386492+yeliMSFT@users.noreply.github.com>
Co-authored-by: pracsb <78512712+pr-work@users.noreply.github.com>
Co-authored-by: Prachi Pravin Bhavsar <prbhavsar@microsoft.com>
Co-authored-by: nanditaashok-ms <122581061+nanditaashok-ms@users.noreply.github.com>
Co-authored-by: anvrao1 <109107918+anvrao1@users.noreply.github.com>
Co-authored-by: baoqihuang0326 <119557638+baoqihuang0326@users.noreply.github.com>1 parent aef78a6 commit db124c9
File tree
753 files changed
+110835
-2
lines changed- specification/network/resource-manager
- Microsoft.Network/stable/2022-11-01
- examples
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
753 files changed
+110835
-2
lines changedspecification/network/resource-manager/Microsoft.Network/stable/2022-11-01/applicationGateway.json
Lines changed: 3992 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 257 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
| 232 | + | |
| 233 | + | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
0 commit comments