Skip to content

Commit ed6b146

Browse files
committed
Generated from a9023fbd65049681b0ccc49d42a1c4276b0cd159
Merge pull request #1 from EvgenyAgafonchikov/fix-lb Fixed line endings, specs, examples
1 parent 402e75d commit ed6b146

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

azure-mgmt-network/azure/mgmt/network/v2018_08_01/operations/load_balancer_outbound_rules_operations.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -108,15 +108,15 @@ def internal_paging(next_link=None, raw=False):
108108
list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/loadBalancers/{loadBalancerName}/outboundRules'}
109109

110110
def get(
111-
self, resource_group_name, load_balancer_name, load_balancing_rule_name, custom_headers=None, raw=False, **operation_config):
111+
self, resource_group_name, load_balancer_name, outbound_rule_name, custom_headers=None, raw=False, **operation_config):
112112
"""Gets the specified load balancer outbound rule.
113113
114114
:param resource_group_name: The name of the resource group.
115115
:type resource_group_name: str
116116
:param load_balancer_name: The name of the load balancer.
117117
:type load_balancer_name: str
118-
:param load_balancing_rule_name: The name of the outbound rule.
119-
:type load_balancing_rule_name: str
118+
:param outbound_rule_name: The name of the outbound rule.
119+
:type outbound_rule_name: str
120120
:param dict custom_headers: headers that will be added to the request
121121
:param bool raw: returns the direct response alongside the
122122
deserialized response
@@ -132,7 +132,7 @@ def get(
132132
path_format_arguments = {
133133
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'),
134134
'loadBalancerName': self._serialize.url("load_balancer_name", load_balancer_name, 'str'),
135-
'loadBalancingRuleName': self._serialize.url("load_balancing_rule_name", load_balancing_rule_name, 'str'),
135+
'outboundRuleName': self._serialize.url("outbound_rule_name", outbound_rule_name, 'str'),
136136
'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str')
137137
}
138138
url = self._client.format_url(url, **path_format_arguments)

0 commit comments

Comments
 (0)