-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to add operation id for outbound rules (#4320)
* Changes to add operation id for outbound rules * Changes to make outbound rule similar to load balancing rule * fix failures - add example json files * fix failures * Fixed line endings, specs, examples
- Loading branch information
1 parent
6c4312e
commit e8f2b49
Showing
3 changed files
with
181 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
...rce-manager/Microsoft.Network/stable/2018-08-01/examples/LoadBalancerOutboundRuleGet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "testrg", | ||
"loadBalancerName": "lb1", | ||
"outboundRuleName": "rule1", | ||
"api-version": "2018-08-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "rule1", | ||
"id": "/subscriptions/subid/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb1/outboundRules/rule1", | ||
"etag": "W/\\\"00000000-0000-0000-0000-000000000000\\\"", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"frontendIPConfigurations": [ | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/lbfrontend" | ||
} | ||
], | ||
"allocatedOutboundPorts": 64, | ||
"idleTimeoutInMinutes": 15, | ||
"protocol": "Tcp", | ||
"enableTcpReset": true, | ||
"backendAddressPool": { | ||
"id": "/subscriptions/subid/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bepool1" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
...ce-manager/Microsoft.Network/stable/2018-08-01/examples/LoadBalancerOutboundRuleList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "testrg", | ||
"loadBalancerName": "lb1", | ||
"api-version": "2018-08-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "rule1", | ||
"id": "/subscriptions/subid/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb1/outboundRules/rule1", | ||
"etag": "W/\\\"00000000-0000-0000-0000-000000000000\\\"", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"frontendIPConfigurations": [ | ||
{ | ||
"id": "/subscriptions/subid/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/lbfrontend" | ||
} | ||
], | ||
"allocatedOutboundPorts": 64, | ||
"idleTimeoutInMinutes": 15, | ||
"protocol": "Tcp", | ||
"enableTcpReset": true, | ||
"backendAddressPool": { | ||
"id": "/subscriptions/subid/resourceGroups/testrg/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/bepool1" | ||
} | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters